summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug093.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-16 16:12:14 -0800
committerRuss Cox <rsc@golang.org>2009-01-16 16:12:14 -0800
commit69ebaa23298a6ea400acd1b300221f93a1cefc52 (patch)
tree7da3dc3316609873715c3e6e7871cb2bf57da081 /test/fixedbugs/bug093.go
parentc10979708228db68df69d1167f330127dac34a3f (diff)
downloadgolang-69ebaa23298a6ea400acd1b300221f93a1cefc52.tar.gz
convert tests; nothing interesting.
R=r OCL=23012 CL=23014
Diffstat (limited to 'test/fixedbugs/bug093.go')
-rw-r--r--test/fixedbugs/bug093.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/bug093.go b/test/fixedbugs/bug093.go
index f80eee01f..3adbc5abb 100644
--- a/test/fixedbugs/bug093.go
+++ b/test/fixedbugs/bug093.go
@@ -6,14 +6,14 @@
package main
-type S struct {
+export type S struct {
}
func (p *S) M() {
print("M\n");
}
-type I interface {
+export type I interface {
M();
}