aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/StaticInnerAspect.java
blob: ee7e559ea2df73be6c2a1cae8182c80eb48fa607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import org.aspectj.testing.*;

public class StaticInnerAspect {
    public static void main(String[] args) {
        Tester.check(true, "compiled");
    }

}

aspect Aspect {
    static class InnerClass {        
        static aspect InnerAspect {
        }
    }
}