mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
16 lines
403 B
Java
16 lines
403 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8003280
|
|
* @summary Add lambda tests
|
|
* Test invalid lambda expressions
|
|
* @compile/fail/ref=InvalidExpression3.out -XDrawDiagnostics InvalidExpression3.java
|
|
*/
|
|
|
|
import java.util.Comparator;
|
|
|
|
public class InvalidExpression3 {
|
|
|
|
void test() {
|
|
Comparator<Integer> c2 = (Integer i1, Integer i2) -> { return "0"; }; //return type need to match
|
|
}
|
|
}
|