Sign in
go
/
tools
/
e1e2965795e4255f51639d9a5418448a603b8913
/
.
/
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")
}