This commit is contained in:
Anna Kozlova
2014-04-17 13:44:20 +02:00
parent 17b020f7c2
commit 76a9293609
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
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;
}
}