lambda: use wildcard bound for inferred param

This commit is contained in:
anna
2012-07-20 16:04:37 +02:00
parent c3276bd56e
commit 01aefae9db
2 changed files with 22 additions and 1 deletions

View File

@@ -57,4 +57,18 @@ class CastInference {
foo((I1<Integer>)() -> 42);
I1<Integer> i1 = (I1<Integer>)() -> 42;
}
}
class WildcardBoundsUsage {
interface I<X> {
boolean foo(X x);
}
public I<Character> bar(I<? super Character> predicate) {
return null;
}
{
I<Character> i = bar(c -> c.compareTo('x') < 0);
}
}