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