summaryrefslogtreecommitdiff
path: root/tests/semantic/chainup-gobject-unknown-property.test
blob: b7648b52a337f312650e276fde40460625a835e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Invalid Code

class Foo : Object {
}

class Bar : Foo {
	public Bar () {
		Object (unknown: "foo");
	}
}

void main () {
}