Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
14 lines
325 B
Java
14 lines
325 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8003280
|
|
* @summary Add lambda tests
|
|
* Test invalid lambda expressions
|
|
* @compile/fail/ref=InvalidExpression5.out -XDrawDiagnostics InvalidExpression5.java
|
|
*/
|
|
|
|
public class InvalidExpression5 {
|
|
|
|
void test() {
|
|
Object o = (int n) -> { }; // Invalid target type
|
|
}
|
|
}
|