test/tools/javac/varargs/6730476/T6730476a.java

Fri, 10 Dec 2010 15:24:17 +0000

author
mcimadamore
date
Fri, 10 Dec 2010 15:24:17 +0000
changeset 787
b1c98bfd4709
parent 580
46cf751559ae
child 795
7b99f98b3035
permissions
-rw-r--r--

6199075: Unambiguous varargs method calls flagged as ambiguous
Summary: javac does not implement overload resolution w.r.t. varargs methods as described in the JLS
Reviewed-by: jjg

mcimadamore@547 1 /*
ohair@554 2 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
mcimadamore@547 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@547 4 *
mcimadamore@547 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@547 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@547 7 * published by the Free Software Foundation.
mcimadamore@547 8 *
mcimadamore@547 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@547 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@547 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@547 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@547 13 * accompanied this code).
mcimadamore@547 14 *
mcimadamore@547 15 * You should have received a copy of the GNU General Public License version
mcimadamore@547 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@547 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@547 18 *
ohair@554 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 20 * or visit www.oracle.com if you need additional information or have any
ohair@554 21 * questions.
mcimadamore@547 22 */
mcimadamore@547 23
mcimadamore@547 24 /*
mcimadamore@547 25 * @test
mcimadamore@547 26 * @bug 6730476
mcimadamore@547 27 *
mcimadamore@547 28 * @summary invalid "unchecked generic array" warning
mcimadamore@547 29 * @author mcimadamore
mcimadamore@580 30 * @compile T6730476a.java -Xlint:unchecked -Werror
mcimadamore@547 31 *
mcimadamore@547 32 */
mcimadamore@547 33
mcimadamore@547 34 class T6730476a {
mcimadamore@547 35 <T> void f(int i, T ... x) {}
mcimadamore@547 36 void g() {
mcimadamore@547 37 f(1);
mcimadamore@547 38 }
mcimadamore@547 39 }

mercurial