選択できるのは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. }