org.aspectj/tests/errors/TopLevelBefore.java

10 lines
218 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
import org.aspectj.testing.Tester;
before(): call(void main(..)) {} // CE 3
2002-12-16 19:51:06 +01:00
public class TopLevelBefore {
public static void main(String[] args) {
Tester.check(false, "should not have compiled");
}
}