Just 2 lines of code:
var v4 interface{}=strcut{x int}(1) // line 14
var v5 interface{}=&strcut{x int}(1) // line 15
Go prints:
my_test.go:14:29: missing ',' in composite literal
my_test.go:15:30: missing ',' in composite literal
So how to fix it? Thanks a lot.