blob: 3db717b36952c01bc7cef7ea17fd512bcdca9005 [file] [log] [blame]
import java.util.List;
public class WildcardForEach {
static class Gen<T extends Gen<?>> {}
void test(List<Gen<?>> x) {
// This used to cause a crash in
// org.checkerframework.framework.flow.CFTreeBuilder#buildAnnotatedType
for (Gen<?> a : x) {}
}
}