author | jjg |
Mon, 11 Jan 2010 14:05:21 -0800 | |
changeset 4699 | e58edf3542b3 |
parent 863 | 3113c955a388 |
child 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 |
||
863
3113c955a388
6724327: eliminate use of shell tests for simple golden file tests
jjg
parents:
10
diff
changeset
|
6 |
@compile/fail/ref=NonStaticFieldExpr1.out -XDrawDiagnostics -XDstdout NonStaticFieldExpr1.java |
10 | 7 |
*/ |
8 |
class NonStaticFieldExpr1 { |
|
9 |
public int x; |
|
10 |
int y = NonStaticFieldExpr1.x; // SHOULD BE ERROR |
|
11 |
} |