mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
4 lines
246 B
Java
4 lines
246 B
Java
import java.util.function.BiFunction;
|
|
class X {
|
|
BiFunction<Object, Object, Object> b = (<error descr="Variable 'o1' is already defined in the scope">o1</error>, <error descr="Variable 'o1' is already defined in the scope">o1</error>) -> null;
|
|
} |