summaryrefslogtreecommitdiff
path: root/tests/semantic/member-access-private-invalid.test
blob: 8bb0df8a566ab0e8018eb8ad12b6404cf455a45e (plain)
1
2
3
4
5
6
7
8
9
10
Invalid Code

class Foo {
	private int i;
}

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