Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/lambda2methodReference/afterVarargsCall.java
2014-11-12 13:13:35 +01:00

9 lines
136 B
Java

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