test/tools/javac/T8023112/SkipLazyConstantCreationForMethodRefTest.java

Wed, 13 Aug 2014 14:50:00 -0700

author
katleman
date
Wed, 13 Aug 2014 14:50:00 -0700
changeset 2549
0b6cc4ea670f
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u40-b01 for changeset bf89a471779d

     1 /*
     2  * Copyright (c) 2013, 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 8023112
    29  * @summary Mixing up the method type argument with the class type for method
    30  *          reference ClassType<Q>::<T>new
    31  * @compile SkipLazyConstantCreationForMethodRefTest.java
    32  */
    34 public class SkipLazyConstantCreationForMethodRefTest<T> {
    35     SkipLazyConstantCreationForMethodRefTest(int a, boolean b) {}
    36     SkipLazyConstantCreationForMethodRefTest() {}
    37 }
    39 class SubClass<T> extends SkipLazyConstantCreationForMethodRefTest {
    40     SubClass(int a, boolean b) {}
    41 }
    43 interface SAM {
    44     SubClass<SkipLazyConstantCreationForMethodRefTest> m(int a, boolean b);
    45 }
    47 interface Tester1 {
    48     SAM s11 = SubClass<SkipLazyConstantCreationForMethodRefTest>::<Object>new;
    49     SAM s12 = (SubClass<SkipLazyConstantCreationForMethodRefTest>::<Object>new);
    50     SAM s13 = (SAM)SubClass<SkipLazyConstantCreationForMethodRefTest>::<Object>new;
    51     SAM s14 = true ? s11 : s12;
    52     SAM s15 = true ? s11 : (SAM)SubClass<SkipLazyConstantCreationForMethodRefTest>::<Object>new;
    53     SAM s16 = true ? (SAM)SubClass<SkipLazyConstantCreationForMethodRefTest>::<Object>new : s12;
    54 }
    56 interface Tester2 {
    57     SAM s21 = Tester1.s11;
    58 }

mercurial