aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/EachObjectTarget.java
blob: 9c5052342be01963eb5058bc481cbfefbbc59823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import org.aspectj.testing.Tester;

public class EachObjectTarget {
	public static void main(String[] args) {
		EachObjectTarget o = new EachObjectTarget();
		o.foo();
	}
	
	void foo() {
		Tester.check(true, "Dummy test");
	}
}