Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415
  1. /** @testcase PR#829 CE expected when declaring fields on arrays */
  2. public class ArrayFieldDeclarationCE {
  3. public static void main(String[] args) {
  4. throw new Error("should not run");
  5. }
  6. }
  7. class C { }
  8. aspect A {
  9. public int C[].foo; // CE 14 cannot declare fields on arrays
  10. }