summaryrefslogtreecommitdiff
path: root/test/convert.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-05-08 15:40:14 -0700
committerRuss Cox <rsc@golang.org>2009-05-08 15:40:14 -0700
commitbfd9bcac96aa974b273dd0fb9931ff83feb2c6ab (patch)
treeac8aca82e0cdf34df99f8ef940c5ccd74117e926 /test/convert.go
parent61b147cb2187dff8c109570740e81951d7fdc5f5 (diff)
downloadgo-bfd9bcac96aa974b273dd0fb9931ff83feb2c6ab.tar.gz
implications of stricter type equality:
if both types are named, they must be the same type (arising from the same declaration). R=r,gri DELTA=44 (21 added, 4 deleted, 19 changed) OCL=28436 CL=28577
Diffstat (limited to 'test/convert.go')
-rw-r--r--test/convert.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/convert.go b/test/convert.go
index 4952e01b7..1b933f93b 100644
--- a/test/convert.go
+++ b/test/convert.go
@@ -40,14 +40,11 @@ func main() {
panicln("type of f is", t, "want", want);
}
- want = typeof(x);
+ want = typeof(a);
if t := typeof(+a); t != want {
panicln("type of +a is", t, "want", want);
}
if t := typeof(a+0); t != want {
panicln("type of a+0 is", t, "want", want);
}
- if t := typeof(a+b); t != want {
- panicln("type of a+b is", t, "want", want);
- }
}