2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-09-13 00:05:18 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 4350352
|
|
|
|
* @summary InternalError: store unsupported: com.sun.tools.javac.v8.comp.Items
|
|
|
|
* @author gafter
|
|
|
|
*
|
2014-09-13 00:05:18 +00:00
|
|
|
* @compile/fail/ref=StoreClass.out -XDrawDiagnostics StoreClass.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class StoreClass {
|
|
|
|
void f() {
|
|
|
|
StoreClass.class = null;
|
|
|
|
int.class = null;
|
|
|
|
}
|
|
|
|
}
|