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_option_type.out
2023-01-09 09:36:45 +03:00

7 lines
214 B
Plaintext

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