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

10 lines
205 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(<caret>);
}
}