blob: a1c8a51d4e1fb19a8372b6d63999908a052696f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pkg.*;
import org.aspectj.testing.Tester;
public class Driver {
public static void main(String[] args) { test(); }
public static void test() {
Obj obj = new Obj();
Tester.checkEqual(obj.m(), 3, "obj.m()");
}
}
|