aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2002-12-30 20:31:11 +0000
committerjhugunin <jhugunin>2002-12-30 20:31:11 +0000
commita000466044a97c1071827a652c901a948d9ace28 (patch)
tree832e364d158f1e8d685cbb1bde72a6e2ab62e0d6 /tests
parent580d0ccb31b25769510283e93174915f76b06d09 (diff)
downloadaspectj-a000466044a97c1071827a652c901a948d9ace28.tar.gz
aspectj-a000466044a97c1071827a652c901a948d9ace28.zip
fixed to match fact that this syntax is forbidden
Diffstat (limited to 'tests')
-rw-r--r--tests/new/ArrayFieldDeclaration.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/new/ArrayFieldDeclaration.java b/tests/new/ArrayFieldDeclaration.java
index fec447fb1..6492554d3 100644
--- a/tests/new/ArrayFieldDeclaration.java
+++ b/tests/new/ArrayFieldDeclaration.java
@@ -6,7 +6,7 @@ import java.util.*;
public class ArrayFieldDeclaration {
public static void main(String[] args) {
- Tester.check(null != new C().f[0], "null != new C().f[0]");
+ //Tester.check(null != new C().f[0], "null != new C().f[0]");
}
}
@@ -14,5 +14,5 @@ class C {
}
aspect A {
- Object C.f[] = new Object[] { "hello" };
+ Object C.f[] = new Object[] { "hello" }; //CE postfix [] syntax is illegal in inter-type decs
}