summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug177.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug177.go')
-rw-r--r--test/fixedbugs/bug177.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug177.go b/test/fixedbugs/bug177.go
index aec382388..a120ad0ab 100644
--- a/test/fixedbugs/bug177.go
+++ b/test/fixedbugs/bug177.go
@@ -12,7 +12,7 @@ type S1 struct{ i int }
type S2 struct{ S1 }
func main() {
- typ := reflect.Typeof(S2{})
+ typ := reflect.TypeOf(S2{})
f := typ.Field(0)
if f.Name != "S1" || f.Anonymous != true {
println("BUG: ", f.Name, f.Anonymous)