summaryrefslogtreecommitdiffstats
path: root/tests/new/options11/Main.java
blob: cfefc7b9079f98a3de33ee391dd21ee6584fa6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
import org.aspectj.testing.Tester;

public class Main {
    static int i = 0;
    public static void main(String[] args) {
        new injar.Injar().run();
        Tester.check(i != 0, "aspect failed");
    }   
}