summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug014.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug014.go')
-rw-r--r--test/fixedbugs/bug014.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/fixedbugs/bug014.go b/test/fixedbugs/bug014.go
index dac2ce517..38a6e51ab 100644
--- a/test/fixedbugs/bug014.go
+++ b/test/fixedbugs/bug014.go
@@ -11,4 +11,5 @@ func main() {
var c01 uint8 = '\07'; // ERROR "oct|char"
var cx0 uint8 = '\x0'; // ERROR "hex|char"
var cx1 uint8 = '\x'; // ERROR "hex|char"
+ _, _, _, _ = c00, c01, cx0, cx1
}