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.

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