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