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