Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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