1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/invalid_recursive_struct2_err.out
2021-01-09 01:33:36 +01:00

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 | }