您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ArrayFieldDeclarationCE.java 298B

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