summaryrefslogtreecommitdiff
path: root/test/golden.out
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2011-03-29 15:03:09 -0700
committerIan Lance Taylor <iant@golang.org>2011-03-29 15:03:09 -0700
commit6ba764998f24055331efab4e840539a934672c80 (patch)
tree356b70d2357cdbe5fed93349e2ea9d4ef244f566 /test/golden.out
parente113fd4866786a0709ffd0441d8e049250d0958e (diff)
downloadgo-6ba764998f24055331efab4e840539a934672c80.tar.gz
test: adjust bug324 to expect run-time failure, not compile-time.
Failing at compile time requires that for each conversion between two interface types the compiler compare the sets of unexported methods to see if they come from different packages. Since this test will fail approximately never on real code, and since it can't catch all cases of the problem, I don't think it's worth testing in the compiler. This CL changes this test to look for a run-time panic rather than a compile-time error. R=gri, rsc1, iant2, rsc CC=golang-dev http://codereview.appspot.com/4332041
Diffstat (limited to 'test/golden.out')
-rw-r--r--test/golden.out4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/golden.out b/test/golden.out
index d8e89e866..f76db3e50 100644
--- a/test/golden.out
+++ b/test/golden.out
@@ -165,4 +165,6 @@ bugs/bug322.dir/main.go:32: implicit assignment of unexported field 'x' of lib.T
BUG: fails incorrectly
=========== bugs/bug324.go
-BUG: errchk: command succeeded unexpectedly
+main.Implementation.private()
+p.Implementation.private()
+BUG: should fail