/* * @test /nodynamiccopyright/ * @author mcimadamore * @bug 7005671 * @summary Generics compilation failure casting List to List * @compile/fail/ref=T7126754.out -Xlint:unchecked -Werror -XDrawDiagnostics T7126754.java */ import java.util.List; class T7126754 { List> c = null; List> d = (List>)c; }