From 4f61fc96b2788be7cbfc6f7a72acef3d3feeeb6c Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Sat, 4 Sep 2010 10:36:13 +1000 Subject: test: remove semiocolons. The ken directory is untouched so we have some examples with explicit semis. R=gri CC=golang-dev https://golang.org/cl/2157041 --- test/gc1.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/gc1.go') diff --git a/test/gc1.go b/test/gc1.go index 055079aabe..84034e7cea 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 } } -- cgit v1.2.1