vlib/v/checker/tests/struct_scope_err.vv:8:5: notice: condition is always true 6 | } 7 | 8 | if true { | ~~~~ 9 | fb := Foobar{5, 6} 10 | println(fb.foo) vlib/v/checker/tests/struct_scope_err.vv:16:8: error: unknown type `Foobar` 14 | 15 | fn x() { 16 | fb := Foobar{7, 8} | ~~~~~~~~~~~~ 17 | println(fb.bar) 18 | } vlib/v/checker/tests/struct_scope_err.vv:17:13: error: `fb` does not return a value 15 | fn x() { 16 | fb := Foobar{7, 8} 17 | println(fb.bar) | ~~~ 18 | } vlib/v/checker/tests/struct_scope_err.vv:17:2: error: `println` can not print void expressions 15 | fn x() { 16 | fb := Foobar{7, 8} 17 | println(fb.bar) | ~~~~~~~~~~~~~~~ 18 | }