mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
11 lines
230 B
Java
11 lines
230 B
Java
// "Insert '.doSomething' to call functional interface method" "false"
|
|
public class Test {
|
|
interface MyFn {
|
|
void doSomething(String s, int i);
|
|
void doSomething();
|
|
}
|
|
|
|
public void test(MyFn fn) {
|
|
fn(<caret>);
|
|
}
|
|
} |