langtools/test/tools/javac/generics/inference/6611449/T6611449.java
author jjg
Mon, 26 Jul 2010 14:18:45 -0700
changeset 6150 d055fa8ced62
parent 3766 7e2df99e9223
child 30014 fc1f2b200c1f
permissions -rw-r--r--
6971882: Remove -XDstdout from javac test Reviewed-by: darcy

/**
 * @test /nodynamiccopyright/
 * @bug 6611449
 * @summary Internal Error thrown during generic method/constructor invocation
 * @compile/fail/ref=T6611449.out -XDrawDiagnostics T6611449.java
 */
public class T6611449<S> {

    <T extends S> T6611449(T t1) {}

    <T extends S> T6611449(T t1, T t2) {}

    <T extends S> void m1(T t1) {}

    <T extends S> void m2(T t1, T t2) {}

    void test() {
        new T6611449<S>(1);
        new T6611449<S>(1, 1); //internal error: lub is erroneously applied to primitive types
        m1(1);
        m2(1, 1); //internal error: lub is erroneously applied to primitive types
    }
}