test/tools/javac/lambda/lambdaExecution/InInterface.java

Thu, 25 Jul 2013 14:51:40 +0100

author
mcimadamore
date
Thu, 25 Jul 2013 14:51:40 +0100
changeset 1921
dae52d74c1fc
parent 1752
c09b7234cded
child 1983
7de7100c30ce
permissions
-rw-r--r--

8020843: javac crashes on accessibility check with method reference with typevar receiver
Summary: method reference overload check doesn't walk through type-variable receivers
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 /**
    27  * @test
    28  * @bug 8003639
    29  * @ignore 8013875: Incorrect vtable index being set during methodHandle creation for static
    30  * @summary convert lambda testng tests to jtreg and add them
    31  * @run testng InInterface
    32  */
    34 import static org.testng.Assert.assertEquals;
    35 import org.testng.annotations.Test;
    37 interface LTII {
    39     interface ILsp1 {
    40         String m();
    41     }
    43     interface ILsp2 {
    44         String m(String x);
    45     }
    47     default ILsp1 t1() {
    48         return () -> { return "yo"; };
    49     }
    51     default ILsp2 t2() {
    52         return (x) -> { return "snur" + x; };
    53     }
    55 }
    57 @Test
    58 public class InInterface implements LTII {
    60     public void testLambdaInDefaultMethod() {
    61         assertEquals(t1().m(), "yo");
    62         assertEquals(t2().m("p"), "snurp");
    63     }
    65 }

mercurial