test/tools/javac/NonStaticFieldExpr2.java

Mon, 24 Nov 2014 12:49:30 -0500

author
emc
date
Mon, 24 Nov 2014 12:49:30 -0500
changeset 2612
cb7e7928902f
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8029012: parameter_index for type annotation not updated after outer.this added
Summary: Fix javac's handling of type annotations when synthetic parameters are added
Reviewed-by: jjg, mcimadamore

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