blob: 4c56606e55ef228336daa83e4006a2c843a37e60 [file] [log] [blame]
class Test {
interface I<T extends Number> {
void _(T t);
}
void foo(Object o) { }
void test() {
I<?> i1 = (x) -> {};
I<?> i2 = this :: foo;
}
}