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

class Foo {
	void method () {
	}

	static void bar () {
		var m = method;
	}
}

void main () {
}