blob: d4105bbc8025c980738dbac1459899c8c96b74fd [file] [log] [blame]
public class InferAndIntersection {
<T> void toInfer(Iterable<T> t) {}
<U extends Object & Iterable<Object>> void context(U u) {
toInfer(u);
}
}