summaryrefslogtreecommitdiff
path: root/tests/semantic/localvariable-var-static-access-instance-property.test
blob: a28859687ce77233ea84962a8c2f8c11eda79d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Invalid Code

class Foo {
	int prop { get; set; }

	static void bar () {
		var p = prop;
	}
}

void main () {
}