author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 47216 | 71c04702a3d5 |
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 |
} |