test/tools/javac/NonStaticFieldExpr1.java

Wed, 09 Apr 2008 11:19:15 -0700

author
xdono
date
Wed, 09 Apr 2008 11:19:15 -0700
changeset 15
18f0b1b5ffd6
parent 1
9a66ca7c79fa
child 69
82c7aa6fe50a
permissions
-rw-r--r--

Added tag jdk7-b25 for changeset 58039502942e

     1 /* @test  /nodynamiccopyright/
     2    @bug 4087127 4785453
     3    @author dps
     4    @summary field: instance access through types is not allowed
     6    @run shell NonStaticFieldExpr1.sh
     7 */
     8 class NonStaticFieldExpr1 {
     9   public int x;
    10   int y = NonStaticFieldExpr1.x;                // SHOULD BE ERROR
    11 }

mercurial