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.
15 lines
326 B
Java
15 lines
326 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4350352
|
|
* @summary InternalError: store unsupported: com.sun.tools.javac.v8.comp.Items
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=StoreClass.out -XDrawDiagnostics StoreClass.java
|
|
*/
|
|
|
|
class StoreClass {
|
|
void f() {
|
|
StoreClass.class = null;
|
|
int.class = null;
|
|
}
|
|
}
|