summaryrefslogtreecommitdiff
path: root/tests/objects/member-initializer-property.vala
blob: cd71ed010de96cbc994d7d4af6c09e08c91313bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Baz {
}

class Bar : Baz {
}

class Foo {
	public Baz baz { get; set; }
}

void main() {
	var foo = new Foo () {
		baz = new Bar ()
	};
}