summaryrefslogtreecommitdiff
path: root/test/golden.out
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-04-21 08:14:50 -0400
committerRuss Cox <rsc@golang.org>2011-04-21 08:14:50 -0400
commit5ff3336490bdbc8e838391978306e0e2510a81c7 (patch)
tree8f831d549cd1c083a981b15d7f132c0267079415 /test/golden.out
parent5aad5146742146a2b178edb7a14f8c5b0165f787 (diff)
downloadgo-git-5ff3336490bdbc8e838391978306e0e2510a81c7.tar.gz
gc: correct handling of unexported method names in embedded interfaces
go/types: update for export data format change reflect: require package qualifiers to match during interface check runtime: require package qualifiers to match during interface check test: fixed bug324, adapt to be silent Fixes #1550. Issue 1536 remains open. R=gri, ken2, r CC=golang-dev https://golang.org/cl/4442071
Diffstat (limited to 'test/golden.out')
-rw-r--r--test/golden.out5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/golden.out b/test/golden.out
index bbe399f28c..725e8de448 100644
--- a/test/golden.out
+++ b/test/golden.out
@@ -166,8 +166,3 @@ panic: interface conversion: interface is main.T, not main.T
bugs/bug322.dir/main.go:19: implicit assignment of unexported field 'x' of lib.T in method receiver
bugs/bug322.dir/main.go:32: implicit assignment of unexported field 'x' of lib.T in method receiver
BUG: fails incorrectly
-
-=========== bugs/bug324.go
-main.Implementation.private()
-p.Implementation.private()
-BUG: should fail