blob: b8186446a6a0dcd6e01f1f2113d34b3de593b844 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import org.aspectj.testing.Tester;
after(): call(void main(..)) {} // CE 3
public class TopLevelAfter {
public static void main(String[] args) {
Tester.check(false, "should not have compiled");
}
}
|