summaryrefslogtreecommitdiff
path: root/tests/parser/member-initializer.vala
blob: 7795c14f6631bc4d124820ce9765421fa8ed572f (plain)
1
2
3
4
5
6
7
8
9
class Foo {
	public int i;
}

void main () {
	var foo = new Foo () {
		i = 23
	};
}