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

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

mercurial