test/tools/javac/NonStaticFieldExpr3.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 class: instance access through types is not allowed
duke@1 5
jjg@611 6 @compile/fail/ref=NonStaticFieldExpr3.out -XDrawDiagnostics NonStaticFieldExpr3.java
duke@1 7 */
duke@1 8
duke@1 9 class NonStaticFieldExpr3 {
duke@1 10 public int x;
duke@1 11 }
duke@1 12
duke@1 13 class Subclass extends NonStaticFieldExpr3 {
duke@1 14 int a = NonStaticFieldExpr3.x; // SHOULD BE ERROR
duke@1 15 }

mercurial