I have the following structs declared in packageA
type FlagSkel struct {
    Name    string
    Short   string
    HelpMsg string
}
type FlagString struct {
    Value        string
    DefaultValue string
}
type CompositeFlagString struct {
    FlagSkel
    FlagString
}
In another package, I am trying to initialise (outside any function) a var of the later type as follows:
var Name = packageA.CompositeFlagString{
    FlagSkel: {
        Name:    "name",
        Short:   "",
        HelpMsg: "Something here",
    },
    FlagString: {
        DefaultValue: "",
    },
}
However vscode compiler shows me the attached error
What am I doing wrong?
