summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug437.dir/x.go
diff options
context:
space:
mode:
authorR?my Oudompheng <oudomphe@phare.normalesup.org>2012-10-10 22:35:27 +0200
committerR?my Oudompheng <oudomphe@phare.normalesup.org>2012-10-10 22:35:27 +0200
commita728643d9cd2c4ca43bada8685555252f4cd6e55 (patch)
tree6619ae16bc62e51f4b5b274e3eeb01a5a245f326 /test/fixedbugs/bug437.dir/x.go
parent47cec4d9c7aacab85cc36720c5baddf4439d249d (diff)
downloadgo-a728643d9cd2c4ca43bada8685555252f4cd6e55.tar.gz
test: convert tests to run.go whenever possible.
The other tests either need a complex procedure or are architecture- or OS-dependent. Update issue 4139. R=golang-dev, daniel.morsing, iant CC=golang-dev http://codereview.appspot.com/6618062
Diffstat (limited to 'test/fixedbugs/bug437.dir/x.go')
-rw-r--r--test/fixedbugs/bug437.dir/x.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/fixedbugs/bug437.dir/x.go b/test/fixedbugs/bug437.dir/x.go
new file mode 100644
index 000000000..364d017af
--- /dev/null
+++ b/test/fixedbugs/bug437.dir/x.go
@@ -0,0 +1,25 @@
+// Copyright 2012 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.
+
+// Test converting a type defined in a different package to an
+// interface defined in a third package, where the interface has a
+// hidden method. This used to cause a link error with gccgo.
+
+package main
+
+import (
+ "./one"
+ "./two"
+)
+
+func F(i1 one.I1) {
+ switch v := i1.(type) {
+ case two.S2:
+ one.F1(v)
+ }
+}
+
+func main() {
+ F(nil)
+}