test/tools/javac/lambda/TargetType16.java

Wed, 14 May 2014 15:41:28 -0600

author
dlsmith
date
Wed, 14 May 2014 15:41:28 -0600
changeset 2395
9c577131ffa6
parent 1415
01c9d4161882
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8034223: Most-specific should not have any special treatment for boxed vs. unboxed types
Summary: Rewrite most-specific logic to conform to JLS 8 15.12.2.5
Reviewed-by: vromero

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 8003280 8034223
     4  * @summary Add lambda tests
     5  *  Check void-compatibility in strict vs. loose conversion contexts
     6  * @compile TargetType16.java
     7  */
     9 class TargetType16 {
    11     interface SAM1 {
    12         void m1();
    13     }
    15     interface SAM2<X> {
    16         X m2();
    17     }
    19     static void m(SAM1 s1) { }
    20     static <T> void m(SAM2<T> s2) { }
    22     public static void main(String[] args) {
    23         m(() -> { throw new AssertionError(); }); // prefer SAM2
    24     }
    25 }

mercurial