org.aspectj/tests/new/ArrayFieldDeclaration.java
2002-12-16 18:51:06 +00:00

19 lines
347 B
Java

import org.aspectj.testing.Tester;
import java.util.*;
/** @testcase PR#829 declare array field using postfix */
public class ArrayFieldDeclaration {
public static void main(String[] args) {
Tester.check(null != new C().f[0], "null != new C().f[0]");
}
}
class C {
}
aspect A {
Object C.f[] = new Object[] { "hello" };
}