diff options
Diffstat (limited to 'test/fixedbugs/bug089.go')
-rw-r--r-- | test/fixedbugs/bug089.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/bug089.go b/test/fixedbugs/bug089.go index 296e9e6d6..55d4dfba7 100644 --- a/test/fixedbugs/bug089.go +++ b/test/fixedbugs/bug089.go @@ -6,8 +6,8 @@ package main -type I1 interface {} -type I2 interface { pr() } +export type I1 interface {} +export type I2 interface { pr() } func e() I1; |