mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00

Made sure anonymous class declarations inside class- and package-level annotations are properly entered. Reviewed-by: jfranck
12 lines
337 B
Java
12 lines
337 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8028389
|
|
* @summary javac should output a proper error message when given something
|
|
* like new Object(){} as annotation argument.
|
|
*
|
|
* @compile AnonSubclassOnPkg.java
|
|
* @compile/fail/ref=package-info.out -XDrawDiagnostics package-info.java
|
|
*/
|
|
|
|
@AnonSubclassOnPkg(new Object(){})
|
|
package pkg;
|