jdk-24/test/langtools/tools/javac/cast/6548436/T6548436d.java
2017-09-12 19:03:39 +02:00

18 lines
379 B
Java

/*
* @test /nodynamiccopyright/
* @bug 6548436
* @summary Incorrect inconvertible types error
* @author Maurizio Cimadamore
*
* @compile/fail/ref=T6548436d.out -XDrawDiagnostics T6548436d.java
*/
public class T6548436d {
static class Base<E extends Comparable<E>> {}
static void test(Base<? extends Double> je) {
Object o = (Base<Integer>)je;
}
}