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

Tue, 04 Mar 2008 12:14:13 +0000

author
mcimadamore
date
Tue, 04 Mar 2008 12:14:13 +0000
changeset 5
b45f8d4794b7
child 29
6522ea413d23
permissions
-rw-r--r--

6611449: Internal Error thrown during generic method/constructor invocation
Summary: type-inference should fail since lub is not defined for primitive types
Reviewed-by: jjg

mcimadamore@5 1 /*
mcimadamore@5 2 * Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
mcimadamore@5 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@5 4 *
mcimadamore@5 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@5 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@5 7 * published by the Free Software Foundation.
mcimadamore@5 8 *
mcimadamore@5 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@5 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@5 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@5 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@5 13 * accompanied this code).
mcimadamore@5 14 *
mcimadamore@5 15 * You should have received a copy of the GNU General Public License version
mcimadamore@5 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@5 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@5 18 *
mcimadamore@5 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
mcimadamore@5 20 * CA 95054 USA or visit www.sun.com if you need additional information or
mcimadamore@5 21 * have any questions.
mcimadamore@5 22 */
mcimadamore@5 23
mcimadamore@5 24 /**
mcimadamore@5 25 * @test
mcimadamore@5 26 * @bug 6611449
mcimadamore@5 27 * @summary Internal Error thrown during generic method/constructor invocation
mcimadamore@5 28 * @compile/fail/ref=T6611449.out -XDstdout -XDrawDiagnostics T6611449.java
mcimadamore@5 29 */
mcimadamore@5 30 public class T6611449<S> {
mcimadamore@5 31
mcimadamore@5 32 T6611449() {this(1);}
mcimadamore@5 33
mcimadamore@5 34 <T extends S> T6611449(T t1) {this(t1, 1);}
mcimadamore@5 35
mcimadamore@5 36 <T extends S> T6611449(T t1, T t2) {}
mcimadamore@5 37
mcimadamore@5 38 <T extends S> void m(T t1) {}
mcimadamore@5 39
mcimadamore@5 40 <T extends S> void m(T t1, T t2) {}
mcimadamore@5 41
mcimadamore@5 42 void test() {
mcimadamore@5 43 m1(1);
mcimadamore@5 44 m2(1, 1);
mcimadamore@5 45 }
mcimadamore@5 46 }

mercurial