jdk
1/*
2* @test /nodynamiccopyright/
3* @bug 4350352
4* @summary InternalError: store unsupported: com.sun.tools.javac.v8.comp.Items
5* @author gafter
6*
7* @compile/fail/ref=StoreClass.out -XDrawDiagnostics StoreClass.java
8*/
9
10class StoreClass {
11void f() {
12StoreClass.class = null;
13int.class = null;
14}
15}
16