blob: ae481bbfb7f87ade3dabacc16b5bc10110bb1231 [file] [log] [blame]
// "Remove redundant types" "false"
class Test3 {
interface I<Y> {
void m(Y y);
}
static <T> void bar(I<T> i, List<T> l){
bar((<caret>T x) -> {}, null);
}
}