honnef.co/go/tools@v0.5.0-0.dev.0.20240520180541-dcae280a5e87/simple/s1016/testdata/src/example.com/CheckSimplerStructConversion_go17/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.a, v1.b} 22 }