Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromMethodRef/afterConstructor.java
2014-12-06 13:25:00 +03:00

14 lines
147 B
Java

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