mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
incompatible parameter types in lambda expression message expanded (IDEA-134941)
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
class IDEA100385 {
|
||||
void foo(N<Double> n){
|
||||
n.forEach((<error descr="Incompatible parameter types in lambda expression">double e</error>) -> { });
|
||||
n.forEach(<error descr="Incompatible parameter types in lambda expression: expected Double but found double">(double e)</error> -> { });
|
||||
}
|
||||
static interface N<E> {
|
||||
void forEach(Consumer<? extends E> consumer);
|
||||
|
||||
Reference in New Issue
Block a user