選択できるのは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. }