Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
9 lines
219 B
Java
9 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";
|
|
}
|