summaryrefslogtreecommitdiff
path: root/test/alias.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-10-18 14:55:50 -0400
committerRuss Cox <rsc@golang.org>2011-10-18 14:55:50 -0400
commit4c8b3493422ea5bada3b8e1faca58150e818cb83 (patch)
tree010c3cadd6b7905f21c57d698d1713bad6cf2716 /test/alias.go
parent5358cb6bbbd6cc1584b3e26b55fdb7cfdda1240c (diff)
downloadgo-4c8b3493422ea5bada3b8e1faca58150e818cb83.tar.gz
gc: preserve uint8 and byte distinction in errors, import data
There is no semantic change here, just better errors. If a function says it takes a byte, and you pass it an int, the compiler error now says that you need a byte, not that you need a uint8. Groundwork for rune. R=ken2 CC=golang-dev http://codereview.appspot.com/5300042
Diffstat (limited to 'test/alias.go')
-rw-r--r--test/alias.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/alias.go b/test/alias.go
new file mode 100644
index 000000000..6039b3183
--- /dev/null
+++ b/test/alias.go
@@ -0,0 +1,19 @@
+// errchk $G -e $D/$F.go
+
+// Copyright 2011 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
+
+// Test that error messages say what the source file says
+// (uint8 vs byte).
+
+func f(byte) {}
+func g(uint8) {}
+
+func main() {
+ var x int
+ f(x) // ERROR "byte"
+ g(x) // ERROR "uint8"
+}