inline local: go through lambda/inner class hierarchy evenly (IDEA-162909)

This commit is contained in:
Anna.Kozlova
2016-10-21 14:52:31 +02:00
parent 8a276d0bf4
commit 260c6317c8
4 changed files with 21 additions and 4 deletions
@@ -0,0 +1,5 @@
class Test {
{
Runnable r = () -> {Runnable rr = () -> System.out.println("hello");};
}
}