test/tools/javac/NonStaticFieldExpr1.java

changeset 1
9a66ca7c79fa
child 69
82c7aa6fe50a
equal deleted inserted replaced
-1:000000000000 1:9a66ca7c79fa
1 /* @test /nodynamiccopyright/
2 @bug 4087127 4785453
3 @author dps
4 @summary field: instance access through types is not allowed
5
6 @run shell NonStaticFieldExpr1.sh
7 */
8 class NonStaticFieldExpr1 {
9 public int x;
10 int y = NonStaticFieldExpr1.x; // SHOULD BE ERROR
11 }

mercurial