mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
incompatible parameter types in lambda expression message expanded (IDEA-134941)
This commit is contained in:
@@ -11,7 +11,7 @@ class Foo {
|
||||
};
|
||||
|
||||
void bazz() {
|
||||
bar((<error descr="Incompatible parameter types in lambda expression">String s</error>) -> {
|
||||
bar(<error descr="Incompatible parameter types in lambda expression: expected int but found String">(String s)</error> -> {
|
||||
System.out.println(s);});
|
||||
bar((int i) -> {System.out.println(i);});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user