IDEA-91371

This commit is contained in:
Anna Kozlova
2012-09-12 17:53:29 +04:00
parent 2c5beb00d0
commit 2bdd122955
4 changed files with 20 additions and 1 deletions
@@ -0,0 +1,8 @@
class Test {
{
Runnable x = () -> {
String hello = new String("hello");
System.out.println(<caret>hello);
};
}
}