Sign in
go
/
tools
/
2dc7ebab284bdfe6bb7ae8b77c3cccb0049e13ce
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
fillstruct
/
fill_struct_nested.go
blob: ab7be5a7b58a80f2d0c4bd7564db728f7c11ce09 [
file
] [
log
] [
blame
]
package fillstruct
type StructB struct {
StructC
}
type StructC struct {
unexportedInt int
}
func nested() {
c := StructB{
StructC: StructC{},
//@suggestedfix("}", "refactor.rewrite", "Fill")
}
}