mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inline local: go through lambda/inner class hierarchy evenly (IDEA-162909)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
{
|
||||
String <caret>s = "hello";
|
||||
Runnable r = () -> {Runnable rr = () -> System.out.println(s);};
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class Test {
|
||||
{
|
||||
Runnable r = () -> {Runnable rr = () -> System.out.println("hello");};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user