langtools/test/tools/javac/MethodParameters/LambdaTest.java
author jlahoda
Mon, 18 May 2015 09:27:09 +0200
changeset 30727 a4dac07f827c
parent 28452 6afa05455443
child 30730 d3ce7619db2c
permissions -rw-r--r--
8080338: Incorrect GPL header causes RE script to miss swap to commercial header for licensee source bundle 8080339: Incorrect GPL header causes RE script to miss swap to commercial header for licensee source bundle 8080340: Incorrect GPL header causes RE script to miss swap to commercial header for licensee source bundle Summary: Fixing incorrect file headers; also reviewed by kevin.l.brown@oracle.com Reviewed-by: vromero
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     1
/*
30727
a4dac07f827c 8080338: Incorrect GPL header causes RE script to miss swap to commercial header for licensee source bundle
jlahoda
parents: 28452
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
28452
6afa05455443 8037546: javac -parameters does not emit parameter names for lambda expressions
jlahoda
parents: 22445
diff changeset
    26
 * @bug 8006582 8037546
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    27
 * @summary javac should generate method parameters correctly.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    28
 * @build Tester
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    29
 * @compile -parameters LambdaTest.java
21044
ffba9cdeff1a 8015372: Update tests for Method Parameter Reflection API to check whether a parameter is final
mnunez
parents: 16307
diff changeset
    30
 * @run main Tester LambdaTest LambdaTest.out
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    31
 */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    32
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    33
/**
28452
6afa05455443 8037546: javac -parameters does not emit parameter names for lambda expressions
jlahoda
parents: 22445
diff changeset
    34
 * Post https://bugs.openjdk.java.net/browse/JDK-8037546, this test verifies
6afa05455443 8037546: javac -parameters does not emit parameter names for lambda expressions
jlahoda
parents: 22445
diff changeset
    35
 * that MethodParameters attribute for lambdas are emitted properly.
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    36
 */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    37
class LambdaTest {
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    38
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    39
    interface I {
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    40
        int m(int x);
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    41
    }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    42
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    43
    static int foo(I i) { return i.m(0); }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    44
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    45
    static {
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    46
        foo((int x1) -> { return foo((int x2) -> { return x1 + x2; }); });
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    47
    }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    48
}
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    49
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    50
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    51