v/vlib/v/checker/tests/recursive_interface_err.out

6 lines
212 B
Plaintext

vlib/v/checker/tests/recursive_interface_err.vv:2:6: error: recursive interface fields are not allowed because they cannot be initialised
1 | interface Foo {
2 | foo Foo
| ~~~
3 | }