--- old/test/tools/javac/lambda/LambdaConv01.java 2013-05-29 15:45:32.335253174 -0400 +++ new/test/tools/javac/lambda/LambdaConv01.java 2013-05-29 15:45:32.208252118 -0400 @@ -67,7 +67,7 @@ assertTrue(3 == f1.foo()); //Covariant returns: TU f2 = (Integer x) -> x; - assertTrue(3 == f2.foo(3)); + assertTrue(3 == (Integer)f2.foo(3)); //Method resolution with boxing: int res = LambdaConv01.exec((Integer x) -> x, 3); assertTrue(3 == res);