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_struct1_err.out
2021-01-09 01:33:36 +01:00

5 lines
175 B
Plaintext

vlib/v/parser/tests/invalid_recursive_struct1_err.vv:1:8: error: invalid recursive struct `Human`
1 | struct Human {
| ~~~~~
2 | child Human
3 | }