2023-06-20 07:02:49 +00:00
|
|
|
/**
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 8310314
|
2023-11-30 12:49:49 +00:00
|
|
|
* @summary Ensure proper error position for the "implicit classes not supported" error
|
2023-06-20 07:02:49 +00:00
|
|
|
* @compile/fail/ref=SourceLevelErrorPosition.out -XDrawDiagnostics SourceLevelErrorPosition.java
|
|
|
|
*/
|
|
|
|
class Nested {}
|
|
|
|
void main() {
|
|
|
|
System.err.println("");
|
|
|
|
}
|
|
|
|
void test() {
|
|
|
|
System.err.println("");
|
|
|
|
}
|