test/tools/javac/NonStaticFieldExpr2.java

Mon, 23 Sep 2013 10:42:38 +0200

author
alundblad
date
Mon, 23 Sep 2013 10:42:38 +0200
changeset 2047
5f915a0c9615
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

6386236: Please rename com.sun.tools.javac.util.ListBuffer.lb()
Summary: Static factory method ListBuffer.lb removed. Replaced by constructor calls.
Reviewed-by: jfranck, jjg

duke@1 1 /* @test /nodynamiccopyright/
duke@1 2 @bug 4087127 4785453
duke@1 3 @author dps
duke@1 4 @summary method: instance access through types is not allowed
duke@1 5
jjg@611 6 @compile/fail/ref=NonStaticFieldExpr2.out -XDrawDiagnostics NonStaticFieldExpr2.java
duke@1 7 */
duke@1 8
duke@1 9 class NonStaticFieldExpr2 {
duke@1 10
duke@1 11 public int x;
duke@1 12
duke@1 13 void foo () {
duke@1 14 int z = NonStaticFieldExpr2.x; // SHOULD BE ERROR
duke@1 15 }
duke@1 16 }

mercurial