blob: 798f4439a037de1f5553564d98d2581948d668d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import org.aspectj.testing.Tester;
public class LenientTest {
public void m() {
return;; // CE 6 in -lenient only
}
public static void main(String[] args) {
Tester.check(null != new LenientTest(), "no test");
}
}
|