langtools/test/tools/javac/generics/6946618/T6946618c.java
author mcimadamore
Wed, 19 May 2010 16:42:37 +0100
changeset 5649 c9e7ce44b173
child 6032 03b276d8e6a6
permissions -rw-r--r--
6946618: sqe test fails: javac/generics/NewOnTypeParm in pit jdk7 b91 in all platforms. Summary: Bad cast to ClassType in the new diamond implementation fails if the target type of the instance creation expression is a type-variable Reviewed-by: jjg

/*
 * @test /nodynamiccopyright/
 * @bug     6946618
 * @summary sqe test fails: javac/generics/NewOnTypeParm  in pit jdk7 b91 in all platforms.
 * @author  mcimadamore
 * @compile/fail/ref=T6946618c.out -XDrawDiagnostics T6946618c.java
 */

class T6946618c {
    static class C<T> { }

    void test() {
        C<?> c1 = new C<? extends String>();
        C<?> c2 = new C<? super String>();
        C<?> c3 = new C<?>();
    }
}