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