04ad98ed32
Reviewed-by: jlahoda, mcimadamore, vromero, rriggs, alanb, mchung
14 lines
344 B
Java
14 lines
344 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8310314
|
|
* @summary Ensure proper error position for the "implicit classes not supported" error
|
|
* @compile/fail/ref=SourceLevelErrorPosition.out -XDrawDiagnostics SourceLevelErrorPosition.java
|
|
*/
|
|
class Nested {}
|
|
void main() {
|
|
System.err.println("");
|
|
}
|
|
void test() {
|
|
System.err.println("");
|
|
}
|