You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LenientTest.java 248B

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