1 /*
2  * @test /nodynamiccopyright/
3  * @bug 8003280
4  * @summary Add lambda tests
5  *   This test is to verify invalid lambda expressions
6  * @compile/fail/ref=LambdaTest1_neg1.out -XDrawDiagnostics LambdaTest1_neg1.java
7  */
8 
9 import java.util.Comparator;
10 
11 public class LambdaTest1_neg1 {
method()12     void method() {
13         Comparator<Number> c = (Number n1, Number n2) -> { 42; } //compile error, not a statement
14     }
15 }
16