blob: cb813fd6567f45562a0e021d7d7877cafbc70027 [file] [log] [blame]
import java.util.*;
public class Test {
void method(List<? extends String> l) {
for (String integer : l) {
System.out.println(integer.intValue());
}
}
}