v2 / vlib / v / tests / assign / modules / aa / aa.v
7 lines · 4 sloc · 76 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1module aa
2
3pub type MySumType = S1 | S2
4
5pub struct S1 {}
6
7pub struct S2 {}
8