test/tools/javac/MethodParameters/MemberClassTest.java

Wed, 20 Feb 2013 15:47:14 -0800

author
strarup
date
Wed, 20 Feb 2013 15:47:14 -0800
changeset 1594
267225edc1fe
child 1602
dabb36173c63
permissions
-rw-r--r--

8006582: Test for parameter names feature
Reviewed-by: jjg, darcy, emc

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 MemberClassTest.java
strarup@1594 30 * @run main Tester MemberClassTest
strarup@1594 31 */
strarup@1594 32
strarup@1594 33 class MemberClassTest {
strarup@1594 34
strarup@1594 35 interface I {
strarup@1594 36 Long m();
strarup@1594 37 Long m(Long x, Long yx);
strarup@1594 38 }
strarup@1594 39
strarup@1594 40 public class Member implements I {
strarup@1594 41 public class Member_Member {
strarup@1594 42 public Member_Member() {}
strarup@1594 43 public Member_Member(String x, String yx) {}
strarup@1594 44 }
strarup@1594 45
strarup@1594 46 public Member() { }
strarup@1594 47 public Member(Long a, Long ba) { }
strarup@1594 48 public Long m() { return 0L; }
strarup@1594 49 public Long m(Long s, Long ts) { return 0L; }
strarup@1594 50 }
strarup@1594 51
strarup@1594 52 static class Static_Member implements I {
strarup@1594 53 public class Static_Member_Member {
strarup@1594 54 public Static_Member_Member() {}
strarup@1594 55 public Static_Member_Member(String x, String yx) {}
strarup@1594 56 }
strarup@1594 57
strarup@1594 58 public static class Static_Member_Static_Member {
strarup@1594 59 public Static_Member_Static_Member() {}
strarup@1594 60 public Static_Member_Static_Member(String x, String yx) {}
strarup@1594 61 }
strarup@1594 62 public Static_Member() { }
strarup@1594 63 public Static_Member(Long arg, Long barg) { }
strarup@1594 64 public Long m() { return 0L; }
strarup@1594 65 public Long m(Long s, Long ts) { return s + ts; }
strarup@1594 66 }
strarup@1594 67
strarup@1594 68 public MemberClassTest() {
strarup@1594 69 }
strarup@1594 70 public MemberClassTest(final Long a, Long ba) {
strarup@1594 71 }
strarup@1594 72
strarup@1594 73 public void foo() {
strarup@1594 74
strarup@1594 75 new I() {
strarup@1594 76
strarup@1594 77 class Anonymous_Member {
strarup@1594 78 public Anonymous_Member() {}
strarup@1594 79 public Anonymous_Member(String x, String yx) {}
strarup@1594 80 }
strarup@1594 81
strarup@1594 82 public Long m() { return 0L; }
strarup@1594 83 public Long m(Long s, Long ts) { return s + ts; }
strarup@1594 84 }.m();
strarup@1594 85 }
strarup@1594 86 }

mercurial