test/tools/javac/NonStaticFieldExpr3.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 class: instance access through types is not allowed
     6    @run shell NonStaticFieldExpr3.sh
     7 */
     9 class NonStaticFieldExpr3 {
    10   public int x;
    11 }
    13 class Subclass extends NonStaticFieldExpr3 {
    14   int a = NonStaticFieldExpr3.x;      // SHOULD BE ERROR
    15 }

mercurial