aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/ArrayFieldDeclaration.java
blob: 6492554d3096c783bcd4b8006744ddce63273503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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" };  //CE postfix [] syntax is illegal in inter-type decs
}