1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/struct_field_required_fn_result_type.out

8 lines
215 B
Plaintext

vlib/v/parser/tests/struct_field_required_fn_result_type.vv:6:7: error: field `Foo.foo` must be initialized
4 |
5 | fn main() {
6 | f := Foo{}
| ~~~~~
7 | println(f)
8 | }