aboutsummaryrefslogtreecommitdiffstats
path: root/tests/incr/incr1/Incr__0.java
blob: e1cd22b32e9516069f65f634f0bf9ccf5b48886d (plain)
1
2
3
4
5
6
7
8
9
import org.aspectj.testing.Tester;

public class Incr {
	public static void main(String[] args) {
		Tester.checkCurrentRun(0,1);
		Tester.checkWasRecompiled(0,"Incr");
		Tester.checkWasRecompiled(1,"Incr");
	}
}