blob: 807817b48211c21ef605848c2711f0c7ed7f3020 [file] [log] [blame]
// Testcase for Issue 1709
// https://github.com/typetools/checker-framework/issues/1709
import java.util.Iterator;
import java.util.List;
public class Issue1709 {
public static void m(final List<? super Integer> l) {
Iterator<? super Integer> it = l.iterator();
}
}