test/tools/javac/NonStaticFieldExpr2.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 method: instance access through types is not allowed
     6    @run shell NonStaticFieldExpr2.sh
     7 */
     9 class NonStaticFieldExpr2 {
    11   public int x;
    13   void foo () {
    14      int z = NonStaticFieldExpr2.x;     // SHOULD BE ERROR
    15   }
    16 }

mercurial