aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/compiler/check.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/compiler/check.go b/pkg/compiler/check.go
index a07bcd479..04c934c2d 100644
--- a/pkg/compiler/check.go
+++ b/pkg/compiler/check.go
@@ -114,7 +114,7 @@ func (comp *compiler) checkNames() {
continue
}
if builtinStrFlags[name] != nil {
- comp.error(n.Pos, "string flags conflicts with builtin flags", name)
+ comp.error(n.Pos, "string flags %v conflicts with builtin flags", name)
continue
}
if prev := comp.strFlags[name]; prev != nil {