vxx2 / vlib / v / checker / tests / struct_unneeded_default.vv
13 lines · 12 sloc · 196 bytes · f5423ed26b892f0df427ad556e80610b32e6b435
Raw
1struct Test {
2 n int = 0
3 n_ok int = 1
4 s string = ''
5 s_ok string = 's'
6 b bool = false
7 b_ok bool = true
8 opt ?int = none
9 opt_ok ?int = 1
10}
11
12fn main() {
13}
14