vxx2 / vlib / v / checker / tests / struct_required_field.vv
16 lines · 15 sloc · 144 bytes · 757929392e0e7a75fc1272116460981e589737d5
Raw
1struct Abc {
2 f1 int @[required]
3 f2 int
4 f3 int @[required]
5}
6
7fn main() {
8 _ = Abc{
9 f1: 123
10 f3: 789
11 }
12 _ = Abc{
13 f1: 123
14 f2: 789
15 }
16}
17