test/tools/javac/NonStaticFieldExpr2.java

Tue, 04 Mar 2008 15:19:06 +0000

author
mcimadamore
date
Tue, 04 Mar 2008 15:19:06 +0000
changeset 7
d472e2fbcc39
parent 1
9a66ca7c79fa
child 69
82c7aa6fe50a
permissions
-rw-r--r--

6608214: Exception throw while analysing a file with error
Summary: bad error-recovery after bad type-variable bound is detected
Reviewed-by: jjg

     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