Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromMethodRef/afterConstructor.java
2014-04-02 13:52:31 +02:00

14 lines
147 B
Java

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