test/tools/javac/MethodParameters/InstanceMethods.java

Thu, 21 Feb 2013 15:26:46 +0000

author
mcimadamore
date
Thu, 21 Feb 2013 15:26:46 +0000
changeset 1599
9f0ec00514b6
parent 1594
267225edc1fe
child 2137
a48d3b981083
permissions
-rw-r--r--

8007461: Regression: bad overload resolution when inner class and outer class have method with same name
Summary: Fix regression in varargs method resolution introduced by bad refactoring
Reviewed-by: jjg

strarup@1594 1 /*
strarup@1594 2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
strarup@1594 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
strarup@1594 4 *
strarup@1594 5 * This code is free software; you can redistribute it and/or modify it
strarup@1594 6 * under the terms of the GNU General Public License version 2 only, as
strarup@1594 7 * published by the Free Software Foundation.
strarup@1594 8 *
strarup@1594 9 * This code is distributed in the hope that it will be useful, but WITHOUT
strarup@1594 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
strarup@1594 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
strarup@1594 12 * version 2 for more details (a copy is included in the LICENSE file that
strarup@1594 13 * accompanied this code).
strarup@1594 14 *
strarup@1594 15 * You should have received a copy of the GNU General Public License version
strarup@1594 16 * 2 along with this work; if not, write to the Free Software Foundation,
strarup@1594 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
strarup@1594 18 *
strarup@1594 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
strarup@1594 20 * or visit www.oracle.com if you need additional information or have any
strarup@1594 21 * questions.
strarup@1594 22 */
strarup@1594 23
strarup@1594 24 /*
strarup@1594 25 * @test
strarup@1594 26 * @bug 8006582
strarup@1594 27 * @summary javac should generate method parameters correctly.
strarup@1594 28 * @build Tester
strarup@1594 29 * @compile -parameters InstanceMethods.java
strarup@1594 30 * @run main Tester InstanceMethods
strarup@1594 31 */
strarup@1594 32
strarup@1594 33 public class InstanceMethods {
strarup@1594 34 public void empty() {}
strarup@1594 35 final void def(Object a, final Object ba, final String... cba) { }
strarup@1594 36 final public void pub(Object d, final Object ed, final String... fed) { }
strarup@1594 37 protected boolean prot(Object g, final Object hg, final String... ihg) { return true; }
strarup@1594 38 private boolean priv(Object j, final Object kj, final String... lkj) { return true; }
strarup@1594 39 void def(int A, Object BA, final Object CBA, final String... DCBA) { }
strarup@1594 40 public void pub(int B, Object CB, final Object DCB, final String... EDCB) { }
strarup@1594 41 final protected boolean prot(int C, Object DC, final Object EDC, final String... FEDC) { return true; }
strarup@1594 42 final private boolean priv(int D, Object ED, final Object FED, final String... GFED) { return true; }
strarup@1594 43 }
strarup@1594 44
strarup@1594 45
strarup@1594 46

mercurial