mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 00:36:13 +07:00
GitOrigin-RevId: 6b6405ee4491ad1d58947547c40df6fb2d291ab7
10 lines
213 B
Java
10 lines
213 B
Java
// "Insert '.doSomething' to call functional interface method" "true-preview"
|
|
public class Test {
|
|
interface MyFn {
|
|
void doSomething(String s, int i);
|
|
}
|
|
|
|
public void test(MyFn fn) {
|
|
fn(<caret>);
|
|
}
|
|
} |