v/vlib/v/parser/tests/invalid_recursive_struct2_e...

7 lines
193 B
Plaintext

vlib/v/parser/tests/invalid_recursive_struct2_err.vv:5:8: error: invalid recursive struct `Human`
3 | }
4 |
5 | struct Human {
| ~~~~~
6 | child Child
7 | }