blob: 867153f13ef3f982c952578a4161f2ccb94bdc50 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 8145466 8146533
* @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) { }
}