1/*
2 * @test /nodynamiccopyright/
3 * @bug 4960369
4 * @summary drop compound boxing operations
5 * @author gafter
6 *
7 * @compile/fail/ref=CompoundBox.out -XDrawDiagnostics  CompoundBox.java
8 */
9
10class CompoundBox {
11    {
12        Float f = 3;
13    }
14}
15