test/tools/javac/lambda/TargetType43.java

Thu, 10 Oct 2013 14:58:04 +0200

author
ihse
date
Thu, 10 Oct 2013 14:58:04 +0200
changeset 2094
343aeb2033f0
parent 0
959103a6100f
permissions
-rw-r--r--

8001931: The new build system whitespace cleanup
Reviewed-by: tbell, simonis, erikj

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 8003280
     4  * @summary Add lambda tests
     5  *  recovery attribution step for unchecked arguments
     6  * @compile/fail/ref=TargetType43.out -XDrawDiagnostics TargetType43.java
     7  */
     8 class TargetType43 {
    10     void m(Object o) { }
    12     void test(Object obj) {
    13         Object o = x-> { new NonExistentClass(x); return 5; };
    14         m(x-> { new NonExistentClass(x); return 5; });
    15     }
    16 }

mercurial