test/tools/javac/lambda/LambdaScope05.java

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

author
jlahoda
date
Thu, 26 Mar 2015 11:34:50 +0100
changeset 2734
ba758e1ffa69
parent 0
959103a6100f
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

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 8015648
     4  * @summary Duplicate variable in lambda causes javac crash
     5  * @compile/fail/ref=LambdaScope05.out -XDrawDiagnostics LambdaScope05.java
     6  */
     8 class LambdaScope05 {
     9     interface VoidFun1 {
    10         void m(int i);
    11     }
    13     static Runnable r1 = () -> { VoidFun1 p = p -> { }; };
    14     Runnable r2 = () -> { VoidFun1 p = p -> { }; };
    16     static {
    17         Runnable r = () -> { VoidFun1 p = p -> { }; };
    18     }
    20     {
    21         Runnable r = () -> { VoidFun1 p = p -> { }; };
    22     }
    24     static void m_static() {
    25         Runnable r = () -> { VoidFun1 p = p -> { }; };
    26     }
    28     void m() {
    29         Runnable r = () -> { VoidFun1 p = p -> { }; };
    30     }
    31 }

mercurial