mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
9 lines
197 B
Java
9 lines
197 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">int i</error>) -> 2 * i;
|
|
}
|
|
}
|