mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
231 B
Java
13 lines
231 B
Java
class Demo {
|
|
|
|
public void f1() {
|
|
f2(2, <error descr="Target type of a lambda conversion must be an interface">input -> input</error>);
|
|
}
|
|
|
|
public void f2() {
|
|
}
|
|
|
|
public void f2(Object... params) {
|
|
}
|
|
}
|