inline local: fix for outer lambda + nested lambda/class (IDEA-174979)

This commit is contained in:
Anna Kozlova
2017-06-26 16:11:56 +03:00
parent 70170d6f19
commit 3766febf2e
4 changed files with 20 additions and 1 deletions
@@ -0,0 +1,8 @@
class Foo {
void foo(String s) {
Runnable r = () -> {
String s2 = s.toString();
Runnable r2 = () -> System.out.println(s<caret>2);
};
}
}