blob: 87e0155f8606ba81f80575a3bf508a7ead7c2f92 [file] [log] [blame]
import java.util.List;
import org.checkerframework.framework.testchecker.util.*;
public class WildcardSuper {
void test(List<? super @Odd String> list) {
// :: error: (assignment)
@Odd Object odd = list.get(0);
}
}