Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/lambda2methodReference/afterNoParams.java

9 lines
125 B
Java

// "Replace lambda with method reference" "true"
class Example {
public void m() {
}
{
Runnable r = this::m;
}
}