github.com/amarpal/go-tools@v0.0.0-20240422043104-40142f59f616/simple/s1016/testdata/src/example.com/CheckSimplerStructConversion_go18/convert.go.golden (about) 1 package pkg 2 3 type t1 struct { 4 a int 5 b int 6 } 7 8 type t2 struct { 9 a int 10 b int 11 } 12 13 type t3 struct { 14 a int `tag` 15 b int `tag` 16 } 17 18 func fn() { 19 v1 := t1{1, 2} 20 _ = t2(v1) //@ diag(`should convert v1`) 21 _ = t3(v1) //@ diag(`should convert v1`) 22 }