aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/perThis/p/EachObjectTarget.java
blob: bf9c364af441b223f0c6a503aef720a5ce055490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package p;
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");
	}
}