blob: 3aa437a033435875a7d6014676bba2152a61451d [file] [log] [blame]
-- suggestedfix_fill_struct_partial_17_2 --
package fillstruct
type StructPartialA struct {
PrefilledInt int
UnfilledInt int
StructPartialB
}
type StructPartialB struct {
PrefilledInt int
UnfilledInt int
}
func fill() {
a := StructPartialA{
PrefilledInt: 5,
UnfilledInt: 0,
StructPartialB: StructPartialB{},
} //@suggestedfix("}", "refactor.rewrite", "Fill")
b := StructPartialB{
/* this comment should disappear */
PrefilledInt: 7, // This comment should be blown away.
/* As should
this one */
} //@suggestedfix("}", "refactor.rewrite", "Fill")
}
-- suggestedfix_fill_struct_partial_23_2 --
package fillstruct
type StructPartialA struct {
PrefilledInt int
UnfilledInt int
StructPartialB
}
type StructPartialB struct {
PrefilledInt int
UnfilledInt int
}
func fill() {
a := StructPartialA{
PrefilledInt: 5,
} //@suggestedfix("}", "refactor.rewrite", "Fill")
b := StructPartialB{
PrefilledInt: 7,
UnfilledInt: 0,
} //@suggestedfix("}", "refactor.rewrite", "Fill")
}