org.aspectj/tests/new/perThis/p/EachObjectTarget.java
acolyer 19ed0a21b8 move to Eclipse 3.0 M6 JDT core (v_396). Also makes 1.4 the
default mode (inherited behaviour from JDT).
2004-01-13 11:27:59 +00:00

14 lines
239 B
Java

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");
}
}