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

FromJavac.java 314B

1234567891011121314
  1. /**
  2. * this class tries to contain an error that ajc will miss, and that will
  3. * fall through to javac.
  4. * this will need to be steadily updated as ajc catches more things
  5. * the test is to be sure this isn't a silent error
  6. */
  7. public class FromJavac {
  8. public static void foo() {
  9. int x;
  10. int y = x;
  11. }
  12. }