incompatible parameter types in lambda expression message expanded (IDEA-134941)

This commit is contained in:
Anna Kozlova
2015-01-07 17:10:09 +01:00
parent 777397d0d2
commit af7da7a8f4
9 changed files with 29 additions and 25 deletions

View File

@@ -1,6 +1,6 @@
class Test {
{
Comparable c = (<error descr="Incompatible parameter types in lambda expression">String o</error>)->{
Comparable c = <error descr="Incompatible parameter types in lambda expression: expected Object but found String">(String o)</error>->{
return 0;
};
}