/* * @test /nodynamiccopyright/ * @author mcimadamore * @bug 6714835 * @summary Safe cast is rejected (with warning) by javac * @compile/fail/ref=T6714835.out -Xlint:unchecked -Werror -XDrawDiagnostics T6714835.java */ import java.util.*; class T6714835 { void cast1(Iterable x) { Collection x1 = (Collection)x; //ok Collection x2 = (Collection)x; //warn } void cast2(Iterable x) { Collection x1 = (Collection)x; //ok Collection x2 = (Collection)x; //warn } }