Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/insertSamMethodCall/afterCustomFunctionalInterface.java
2017-01-23 12:55:51 +07:00

10 lines
210 B
Java

// "Insert '.doSomething' to call functional interface method" "true"
public class Test {
interface MyFn {
void doSomething(String s, int i);
}
public void test(MyFn fn) {
fn.doSomething();
}
}