summaryrefslogtreecommitdiff
path: root/test/method3.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/method3.go')
-rw-r--r--test/method3.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/method3.go b/test/method3.go
index 491bcdad3..5191c7f1c 100644
--- a/test/method3.go
+++ b/test/method3.go
@@ -16,7 +16,7 @@ type I interface {
}
func main() {
- var t T = T{0,1,2,3,4};
+ var t T = T(0,1,2,3,4);
var i I;
i = t;
if i.Len() != 5 {