summaryrefslogtreecommitdiff
path: root/tests/semantic/struct-recursive-in-struct.test
blob: bcf5b8a464d972fc0d521c67f61b90825b3bcf20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Invalid Code

struct Bar {
	Foo foo;
}

struct Foo {
	Foo next;
	Foo prev;
}

void main () {
}