Files
openide/java/java-tests/testData/refactoring/inlineLocal/LocalVarInsideLambdaBodyWriteUsage.java
Anna Kozlova 2c5beb00d0 IDEA-91421
2012-09-12 17:53:28 +04:00

10 lines
163 B
Java

class Test {
{
Runnable x = () -> {
int hello = 9;
System.out.println(hello);
++hello;
System.out.println(he<caret>llo);
};
}
}