vxx2 / vlib / v / checker / tests / recursive_interface_err.out
5 lines · 5 sloc · 212 bytes · 6fa8e4269e19a7330339cc98cb000530e42829f3
Raw
1vlib/v/checker/tests/recursive_interface_err.vv:2:6: error: recursive interface fields are not allowed because they cannot be initialised
2 1 | interface Foo {
3 2 | foo Foo
4 | ~~~
5 3 | }
6