blob: c7fa33b277f8dfd2861c98baade39dc621f292fb [file] [log] [blame]
import java.util.*;
public class RedundantCast{
<T> void foo2(List<Object[]> x) {
for (Object[] l : x) {
String[] s = (String[]) l;
}
}
}