jdk-24/langtools/test/tools/javac/diags/DiagnosticRewriterTest.java
Srikanth Adayapalam 63f6ba5960 8145466: javac: No line numbers in compilation error
Compiler should not use the syntax tree from enclosing contexts in diagnostics even when the enclosing contexts are consulted for method lookup.

Reviewed-by: mcimadamore
2015-12-22 16:37:52 +05:30

19 lines
377 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8145466
* @summary javac: No line numbers in compilation error
* @compile/fail/ref=DiagnosticRewriterTest.out -Xdiags:compact -XDrawDiagnostics DiagnosticRewriterTest.java
*/
class DiagnosticRewriterTest {
void test() {
new Object() {
void g() {
m(2L);
}
};
}
void m(int i) { }
}