blob: ef81defd32fc99bb098aa95b7fdaf923a5de2d84 [file] [log] [blame]
import java.util.List;
class RedundantCasts {
List<TranslatingCompiler> myTranslators;
void t() {
b((List<Compiler>) (List)myTranslators);
}
void b(List<Compiler> l){}
}
interface Compiler{}
interface TranslatingCompiler extends Compiler{}