Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromMethodRef/afterConstructor.java
T

14 lines
147 B
Java

// "Create Constructor" "true"
class FooBar {
FooBar(int i) {
}
{
Runnable r = FooBar::new;
}
public FooBar() {
}
}