Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterLambdaArgument.java

11 lines
227 B
Java

// "Create Method 'f'" "true"
class A {
{
f(() -> {});
}
private void f(Object p0) {
<caret><selection>//To change body of created methods use File | Settings | File Templates.</selection>
}
}