v2 / vlib / v / checker / tests / array_init_element_option_mismatch_err.vv
13 lines · 11 sloc · 143 bytes · 2d97f16a3d2354a26b3e1c0a2e3593f3b6e2af40
Raw
1struct Foo {
2 a string
3 b ?string
4}
5
6fn main() {
7 str := ?string(none)
8 _ = ['', str]
9
10 foo := Foo{}
11 _ = [foo.a, foo.b]
12 _ = [foo.b, foo.a]
13}
14