summaryrefslogtreecommitdiff
path: root/tests/structs/cast-struct-to-simple-struct.test
blob: 3cb6681fced622a1a9ef84627100e919937516e9 (plain)
1
2
3
4
5
6
7
8
9
10
Invalid Code

struct Foo {
	public int i;
}

void main () {
	Foo foo = { 42 };
	int bar = (int) foo;
}