blob: f3238058872d64f8210e956ac2e043761b67561b [file] [log] [blame]
class IDEA101176 {
static {
foo((Integer i) -> i > 60);
}
static <T> void foo(Predicate<? super T> p){}
interface Predicate<T> {
public boolean test(T t);
}
}