Sign in
go
/
tools.git
/
f7f495a9e805ad610979a4a0505b9239320e6b34
/
.
/
internal
/
lsp
/
testdata
/
fillstruct
/
fill_struct_anon.go
blob: b5d2337fd9d2a51ba2b85a0497a731db838b1deb [
file
] [
log
] [
blame
]
package fillstruct
type StructAnon struct {
a struct{}
b map[string]interface{}
c map[string]struct {
d int
e bool
}
}
func fill() {
_ := StructAnon{}
//@suggestedfix("}", "refactor.rewrite")
}