summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug007.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug007.go')
-rw-r--r--test/fixedbugs/bug007.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/fixedbugs/bug007.go b/test/fixedbugs/bug007.go
index bd970de5f..d65f6da45 100644
--- a/test/fixedbugs/bug007.go
+++ b/test/fixedbugs/bug007.go
@@ -7,7 +7,9 @@
package main
type (
- Point struct { x, y float };
+ Point struct {
+ x, y float64
+ }
Polar Point
)