DEBSOURCES
Skip Quicknav
sources / vala / 0.56.18-2 / tests / semantic / struct-recursive-in-struct.test
12345678910111213
Invalid Code struct Bar { Foo foo; } struct Foo { Foo next; Foo prev; } void main () { }