I've got a largish struct which until just now I was instantiating with the struct literal syntax, e.g.:
Thing{
"the name",
...
}
I've just added an unexported field the Thing struct and now Go is complaining: implicit assignment of unexported field 'config' in Thing literal.
Is there any way I can continue using the literal syntax even though there's now an unexported field on the struct?