langtools/test/tools/javac/MethodParameters/Constructors.java
changeset 21044 ffba9cdeff1a
parent 16307 3027c91f329a
child 22171 71073f4a867e
equal deleted inserted replaced
21043:3b000be15694 21044:ffba9cdeff1a
    25  * @test
    25  * @test
    26  * @bug 8006582
    26  * @bug 8006582
    27  * @summary javac should generate method parameters correctly.
    27  * @summary javac should generate method parameters correctly.
    28  * @build Tester
    28  * @build Tester
    29  * @compile -parameters Constructors.java
    29  * @compile -parameters Constructors.java
    30  * @run main Tester Constructors
    30  * @run main Tester Constructors Constructors.out
    31  */
    31  */
    32 
    32 
    33 public class Constructors {
    33 public class Constructors {
    34     public Constructors() {}
    34     public Constructors() {}
    35     Constructors(final Object a, final String... ba) { }
    35     Constructors(final Object a, final String... ba) { }