vxx2 / vlib / v / checker / tests / struct_field_with_default_err.out
12 lines · 12 sloc · 464 bytes · 1512486d01d4205e7b67ebd679238fa45cd348af
Raw
1vlib/v/checker/tests/struct_field_with_default_err.vv:2:22: error: unknown struct `T`
2 1 | struct Dummy[T] {
3 2 | arbitrary_field T = T{}
4 | ~~~
5 3 | }
6 4 |
7vlib/v/checker/tests/struct_field_with_default_err.vv:2:22: error: incompatible initializer for field `arbitrary_field`: expected `T`, not `void`
8 1 | struct Dummy[T] {
9 2 | arbitrary_field T = T{}
10 | ~~~
11 3 | }
12 4 |
13