summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug131.go
diff options
context:
space:
mode:
authorKen Thompson <ken@golang.org>2009-04-28 13:04:01 -0700
committerKen Thompson <ken@golang.org>2009-04-28 13:04:01 -0700
commit71e93d36107b5dc959d8488642a730888c5a3252 (patch)
treea795daa188482d14c017f5e33d2f52c964099232 /test/fixedbugs/bug131.go
parentce7023516025d3c87739367ec4cc1a90b6966f94 (diff)
downloadgo-71e93d36107b5dc959d8488642a730888c5a3252.tar.gz
bug131 has been fixed with no change
R=r OCL=27980 CL=27980
Diffstat (limited to 'test/fixedbugs/bug131.go')
-rw-r--r--test/fixedbugs/bug131.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/fixedbugs/bug131.go b/test/fixedbugs/bug131.go
new file mode 100644
index 000000000..96e7cc764
--- /dev/null
+++ b/test/fixedbugs/bug131.go
@@ -0,0 +1,12 @@
+// errchk $G $D/$F.go
+
+// Copyright 2009 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package main
+
+func main() {
+ const a uint64 = 10;
+ var b int64 = a;
+}