Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/anonymous2lambda/beforeRunnableInArrayInitializer.java
2012-08-20 21:02:43 +04:00

11 lines
203 B
Java

// "Replace with lambda" "true"
class Test {
{
Runnable[] r = new Runnable[] {new Run<caret>nable() {
@Override
public void run() {
System.out.println("");
}
}};
}
}