v2 / vlib / v / tests / vls / struct_text.vv
29 lines · 25 sloc · 218 bytes · 8f42f1459d43fd9debadbe5e84aa3181bf4a8cd8
Raw
1module main
2
3struct MyS {
4mut:
5 a int
6 b string
7}
8
9struct MyPubS {
10pub:
11 a int
12 b string
13}
14
15struct MyPubMutS {
16pub mut:
17 a int
18 b string
19}
20
21struct Complex {
22mut:
23 mm int
24pub:
25 pp string
26pub mut:
27 pma int
28 pmb string
29}
30