Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/highlighting/SameLambdaParamNames.java
2014-02-04 18:17:57 +04:00

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;
}