| 1 | vlib/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 | |
| 7 | vlib/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 |