3789983e89
Reviewed-by: darcy, ihse
16 lines
360 B
Java
16 lines
360 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8003280
|
|
* @summary Add lambda tests
|
|
* On-demand symbol completion during speculative attribution round fails to report error messages
|
|
* @compile/fail/ref=Main.out -XDrawDiagnostics Main.java
|
|
*/
|
|
class Main {
|
|
void test() {
|
|
m(new A(new Object()));
|
|
m(new A(null));
|
|
}
|
|
|
|
void m(Object o) {}
|
|
}
|