summaryrefslogtreecommitdiffstats
path: root/tests/harness/dirchanges-inc/src/Changed.java
blob: 7c6484ec83f046b6a141dbb96d2ad0550654c773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import org.aspectj.testing.Tester;

public class Changed {
    public static void main(String[] args) {
        Unchanged.main(args);
        String sargs = java.util.Arrays.asList(args).toString();
        if (!"[first]".equals(sargs)) {
            throw new Error("expected args [first] but got " + sargs);
        }
	}
}