summaryrefslogtreecommitdiff
path: root/test/gc1.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/gc1.go')
-rw-r--r--test/gc1.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gc1.go b/test/gc1.go
index 055079aab..84034e7ce 100644
--- a/test/gc1.go
+++ b/test/gc1.go
@@ -8,7 +8,7 @@ package main
func main() {
for i := 0; i < 1e5; i++ {
- x := new([100]byte);
- _ = x;
+ x := new([100]byte)
+ _ = x
}
}