IDEA-120217 same lambda param names highlighting

This commit is contained in:
Anna Kozlova
2014-02-04 17:58:25 +04:00
parent b6cb00a53c
commit ba11e80028
3 changed files with 23 additions and 12 deletions

View File

@@ -0,0 +1,4 @@
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;
}