I\'m running go vet on my CI tool, and started getting the error:
composite literal uses unkeyed fields
Because I\'m instantiating
You can disable it or you can fix the code instead:
a := A{B: b}
playground