jdk-24/langtools/test/tools/javac/quid/T6999438.java
Joe Darcy 42cb36b770 7025784: Add SourceVersion.RELEASE_8
7025786: Add -source 8 and -target 8 to javac
7025789: Change javac source and target default to 8

Reviewed-by: jjg
2011-06-01 23:56:31 -07:00

10 lines
219 B
Java

/* @test /nodynamiccopyright/
* @bug 6999438
* @summary remove support for exotic identifiers from JDK 7
* @compile/fail/ref=T6999438.out -XDrawDiagnostics T6999438.java
*/
class Test {
int #"not supported";
}