summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr118326/Bar.java
blob: 4f238ae3adf6897122a3b7b6d6d6c00436e02701 (plain)
1
2
3
4
5
6
7
8
9
10
public aspect Bar {
    public int Foo.x = null; // error
    
    public int Foo.y = 3;
    
    public int Foo.z = new Integer(42); // autoboxing
    
    public int Foo.i = "hello"; // error

}