It seems when using anonymous embedded structs, field values are not transmitted. For example, given the following types: ``` type B struct { I int } type A struct { B J int } ``` If `A` is sent on a channel, values for the anonymously embedded `B` struct are not sent.
It seems when using anonymous embedded structs, field values are not transmitted. For example, given the following types:
If
Ais sent on a channel, values for the anonymously embeddedBstruct are not sent.