aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/StaticInterfaceMethods.java
blob: fb08f0db43634a2a5a168751801e0da1e8b219c3 (plain)
1
2
3
4
5
6
7
8
9
10
interface StaticInterfaceMethods {
	
}

aspect A {
	
	static int StaticInterfaceMethods.aMethod() {
		return 1;
	}
}