mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
9 lines
229 B
Java
9 lines
229 B
Java
class LambdaConv10 {
|
|
|
|
interface I<T, R> { public R call( T t); }
|
|
|
|
{
|
|
I<Integer,Integer> in = <error descr="Incompatible parameter types in lambda expression: expected Integer but found int">(int i)</error> -> 2 * i;
|
|
}
|
|
}
|