aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/StaticIntroducedReferences.java
blob: 223673d23792d7a5f4342f4a6c2c3cbc20536c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class StaticIntroducedReferences {
}

abstract aspect SuperA {
    static void m() {}
    static int i = 0;
}

aspect A extends SuperA {
    public static void StaticIntroducedReferences.main(String[] args) {
	i++;
	m();
    }
}