mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 12:50:56 +07:00
13 lines
242 B
Java
13 lines
242 B
Java
class Demo {
|
|
|
|
public void f1() {
|
|
f2<error descr="'f2()' in 'Demo' cannot be applied to '(int, <lambda expression>)'">(2, input -> input)</error>;
|
|
}
|
|
|
|
public void f2() {
|
|
}
|
|
|
|
public void f2(Object... params) {
|
|
}
|
|
}
|