您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }