Maurizio Cimadamore ec458693f7 8012003: Method diagnostics resolution need to be simplified in some cases
Unfold method resolution diagnostics when they mention errors in poly expressions

Reviewed-by: jjg, vromero
2013-05-15 14:00:31 +01:00

25 lines
484 B
Java

/**
* @test /nodynamiccopyright/
* @bug 8012003
* @summary Method diagnostics resolution need to be simplified in some cases
* test simplification of lambda type-checking error leading to resolution failure
* @compile/fail/ref=T8012003c.out -XDrawDiagnostics -Xdiags:compact T8012003c.java
*/
class T8012003c {
interface I {
void m(P p);
}
void m(I i) { }
void test() {
m(p->p.m());
}
}
class P {
private void m() { }
}