author | jjg |
Mon, 24 Jan 2011 16:38:56 -0800 | |
changeset 8223 | 638daa596494 |
parent 6150 | d055fa8ced62 |
permissions | -rw-r--r-- |
10 | 1 |
/* @test /nodynamiccopyright/ |
2 |
@bug 4087127 4785453 |
|
3 |
@author dps |
|
4 |
@summary field: instance access through types is not allowed |
|
5 |
||
6150 | 6 |
@compile/fail/ref=NonStaticFieldExpr1.out -XDrawDiagnostics NonStaticFieldExpr1.java |
10 | 7 |
*/ |
8 |
class NonStaticFieldExpr1 { |
|
9 |
public int x; |
|
10 |
int y = NonStaticFieldExpr1.x; // SHOULD BE ERROR |
|
11 |
} |