// Module A authors its OWN `Box` (one `i64` field `x`). Box :: struct { x: i64; } a_box :: () -> Box { return Box.{ x = 7 }; }