langtools/test/tools/javac/MethodParameters/UncommonParamNames.java
author akulyakh
Thu, 21 May 2015 11:41:04 -0700
changeset 30730 d3ce7619db2c
parent 22445 8a8fab3afa0b
child 30846 2b3f379840f0
permissions -rw-r--r--
8076543: Add @modules as needed to the langtools tests Reviewed-by: jjg, shurailine
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     1
/*
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 22445
diff changeset
     2
 * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     4
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     7
 * published by the Free Software Foundation.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     8
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    13
 * accompanied this code).
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    14
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    18
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    21
 * questions.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    22
 */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    23
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    24
/*
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    25
 * @test
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    26
 * @bug 8006582
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    27
 * @summary javac should generate method parameters correctly.
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 22445
diff changeset
    28
 * @modules jdk.compiler/com.sun.tools.classfile
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    29
 * @build Tester
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    30
 * @compile -parameters UncommonParamNames.java
21044
ffba9cdeff1a 8015372: Update tests for Method Parameter Reflection API to check whether a parameter is final
mnunez
parents: 16307
diff changeset
    31
 * @run main Tester UncommonParamNames UncommonParamNames.out
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    32
 */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    33
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    34
/** Test uncommon parameter names */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    35
class UncommonParamNames {
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    36
    public UncommonParamNames(int _x) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    37
    public UncommonParamNames(short $1) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    38
    public UncommonParamNames(long \u0061) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    39
    public UncommonParamNames(char zero\u0000zero\u0000) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    40
    public UncommonParamNames(String zero\u0000zero\u0000seven\u0007) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    41
    public UncommonParamNames(Object zero\u0000zero\u0000eight\u0008) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    42
    public UncommonParamNames(Object aLoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooongName,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    43
                              Object baLoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooongName,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    44
                              Object cbaLoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooongName) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    45
    public UncommonParamNames(int a, int ba, int cba, int dcba, int edcba, int fedcba, int gfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    46
                              int hgfedcba, int ihgfedcba, int jihgfedcba, int kjihgfedcba, int lkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    47
                              int mlkjihgfedcba, int nmlkjihgfedcba, int onmlkjihgfedcba, int ponmlkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    48
                              int qponmlkjihgfedcba, int rqponmlkjihgfedcba, int srqponmlkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    49
                              int tsrqponmlkjihgfedcba, int utsrqponmlkjihgfedcba, int vutsrqponmlkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    50
                              int wvutsrqponmlkjihgfedcba, int xwvutsrqponmlkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    51
                              int yxwvutsrqponmlkjihgfedcba, int zyxwvutsrqponmlkjihgfedcba) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    52
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    53
    public void foo(int _x) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    54
    public void foo(short $1) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    55
    public void foo(long \u0061) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    56
    public void foo(char zero\u0000zero\u0000) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    57
    public void foo(String zero\u0000zero\u0000seven\u0007) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    58
    public void foo(Object zero\u0000zero\u0000eight\u0008) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    59
    public void foo(Object aLoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooongName,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    60
                    Object baLoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooongName,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    61
                    Object cbaLoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooongName) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    62
    public void foo(int a, int ba, int cba, int dcba, int edcba, int fedcba, int gfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    63
                    int hgfedcba, int ihgfedcba, int jihgfedcba, int kjihgfedcba, int lkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    64
                    int mlkjihgfedcba, int nmlkjihgfedcba, int onmlkjihgfedcba, int ponmlkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    65
                    int qponmlkjihgfedcba, int rqponmlkjihgfedcba, int srqponmlkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    66
                    int tsrqponmlkjihgfedcba, int utsrqponmlkjihgfedcba, int vutsrqponmlkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    67
                    int wvutsrqponmlkjihgfedcba, int xwvutsrqponmlkjihgfedcba,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    68
                    int yxwvutsrqponmlkjihgfedcba, int zyxwvutsrqponmlkjihgfedcba) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    69
}