test/tools/javac/lambda/TargetType16.java

Mon, 23 Jun 2014 13:14:32 -0700

author
rfield
date
Mon, 23 Jun 2014 13:14:32 -0700
changeset 2528
eb284abd64fe
parent 2395
9c577131ffa6
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8046060: Different results of floating point multiplication for lambda code block
Summary: propogate strictfp into lambda body
Reviewed-by: vromero, jlahoda

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