diff options
Diffstat (limited to 'gcc/testsuite/go.test/test/fixedbugs/bug248.dir/bug0.go')
-rw-r--r-- | gcc/testsuite/go.test/test/fixedbugs/bug248.dir/bug0.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/bug0.go b/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/bug0.go new file mode 100644 index 000000000..7fc7401c5 --- /dev/null +++ b/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/bug0.go @@ -0,0 +1,9 @@ +package p + +type T struct { + X, Y int +} + +type I interface { + M(T) +} |