go/internal/lsp/testdata/fillstruct/fill_struct_nested.go

16 lines
205 B
Go

package fillstruct
type StructB struct {
StructC
}
type StructC struct {
unexportedInt int
}
func nested() {
c := StructB{
StructC: StructC{}, //@suggestedfix("}", "refactor.rewrite", "Fill")
}
}