test/tools/javac/generics/inference/6611449/T6611449.java

changeset 0
959103a6100f
child 2525
2eb010b6cb22
equal deleted inserted replaced
-1:000000000000 0:959103a6100f
1 /**
2 * @test /nodynamiccopyright/
3 * @bug 6611449
4 * @summary Internal Error thrown during generic method/constructor invocation
5 * @compile/fail/ref=T6611449.out -XDrawDiagnostics T6611449.java
6 */
7 public class T6611449<S> {
8
9 <T extends S> T6611449(T t1) {}
10
11 <T extends S> T6611449(T t1, T t2) {}
12
13 <T extends S> void m1(T t1) {}
14
15 <T extends S> void m2(T t1, T t2) {}
16
17 void test() {
18 new T6611449<S>(1);
19 new T6611449<S>(1, 1); //internal error: lub is erroneously applied to primitive types
20 m1(1);
21 m2(1, 1); //internal error: lub is erroneously applied to primitive types
22 }
23 }

mercurial