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

struct Foo {
	public int i;
}

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