IDEA-91421

This commit is contained in:
Anna Kozlova
2012-09-12 17:53:28 +04:00
parent e2b747be71
commit 2c5beb00d0
3 changed files with 25 additions and 5 deletions
@@ -0,0 +1,10 @@
class Test {
{
Runnable x = () -> {
int hello = 9;
System.out.println(hello);
++hello;
System.out.println(he<caret>llo);
};
}
}