inline local: fix usages inside lambda body (IDEA-151960)

This commit is contained in:
Anna Kozlova
2016-02-24 13:12:24 +01:00
parent 9b850d3996
commit af1a898ee8
4 changed files with 22 additions and 5 deletions
@@ -0,0 +1,8 @@
class Test {
{
String hello = new String("hello");
Runnable x = () -> {
System.out.println(<caret>hello);
};
}
}