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