Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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