v2 / vlib / v / parser / tests / invalid_recursive_struct2_err.vv
7 lines · 6 sloc · 58 bytes · bbac95a43815ae37eabfa7e6b5b4ea4ba99074e3
Raw
1struct Child {
2 be Human
3}
4
5struct Human {
6 child Child
7}
8