aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/struct.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/typeparam/struct.go')
-rw-r--r--test/typeparam/struct.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/typeparam/struct.go b/test/typeparam/struct.go
index 093f6935e6..ad1b41ddac 100644
--- a/test/typeparam/struct.go
+++ b/test/typeparam/struct.go
@@ -35,15 +35,15 @@ type S3 struct {
func main() {
s1 := S1{Eint{2}, "foo"}
if got, want := s1.E.v, 2; got != want {
- panic(fmt.Sprintf("got %d, want %d", got, want))
+ panic(fmt.Sprintf("got %d, want %d", got, want))
}
s2 := S2{Eint{3}, Ebool{true}, "foo"}
if got, want := s2.Eint.v, 3; got != want {
- panic(fmt.Sprintf("got %d, want %d", got, want))
+ panic(fmt.Sprintf("got %d, want %d", got, want))
}
var s3 S3
s3.E = &Eint{4}
if got, want := s3.E.v, 4; got != want {
- panic(fmt.Sprintf("got %d, want %d", got, want))
+ panic(fmt.Sprintf("got %d, want %d", got, want))
}
}