test/tools/javac/NonStaticFieldExpr2.java

Thu, 26 Mar 2015 11:34:50 +0100

author
jlahoda
date
Thu, 26 Mar 2015 11:34:50 +0100
changeset 2734
ba758e1ffa69
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8054220: Debugger doesn't show variables *outside* lambda
8058227: Debugger has no access to outer variables inside Lambda
Summary: Put local variables captured by lambda into the lambda method's LocalVariableTable.
Reviewed-by: mcimadamore, rfield

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