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

8 lines
58 B
V

struct Child {
be Human
}
struct Human {
child Child
}