Sign in
go
/
tools
/
aae3642ea0abd2ff0ae94195510c84e32d6eb621
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
fillstruct
/
fill_struct_anon.go
blob: 2c099a80ea7df40956f6d024b2a20ca602db2ffa [
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", "Fill")
}