summaryrefslogtreecommitdiff
path: root/test/rename1.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-09-09 01:01:39 -0700
committerRuss Cox <rsc@golang.org>2009-09-09 01:01:39 -0700
commite780fa86691ba5d832665b689243239931f5166a (patch)
tree60f5a7934fab0fa8320df6c43c32e90ba7b7708a /test/rename1.go
parent5d16d233620b66f734c315755cb30bd3f5579ff0 (diff)
downloadgo-git-e780fa86691ba5d832665b689243239931f5166a.tar.gz
defining package block names must override
universe block names. BUG=2097244 R=ken OCL=34295 CL=34473
Diffstat (limited to 'test/rename1.go')
-rw-r--r--test/rename1.go48
1 files changed, 48 insertions, 0 deletions
diff --git a/test/rename1.go b/test/rename1.go
new file mode 100644
index 0000000000..eb98e7accf
--- /dev/null
+++ b/test/rename1.go
@@ -0,0 +1,48 @@
+// errchk $G -e $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() {
+ var n byte; // ERROR "not a type"
+ var y = float(0); // ERROR "cannot call"
+ const (
+ a = 1+iota; // ERROR "string"
+ )
+
+}
+
+const (
+ bool = 1;
+ byte = 2;
+ float = 3;
+ float32 = 4;
+ float64 = 5;
+ int = 6;
+ int8 = 7;
+ int16 = 8;
+ int32 = 9;
+ int64 = 10;
+ uint = 11;
+ uint8 = 12;
+ uint16 = 13;
+ uint32 = 14;
+ uint64 = 15;
+ uintptr = 16;
+ true = 17;
+ false = 18;
+ iota = "abc";
+ nil = 20;
+ cap = 21;
+ len = 22;
+ make = 23;
+ new = 24;
+ panic = 25;
+ panicln = 26;
+ print = 27;
+ println = 28;
+)
+