mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 07:48:19 +07:00
465325a6a6
(cherry picked from commit 0d293e439ffcbe97db98c1a1b8072e798d94323e)
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) {
|
|
}
|
|
}
|