3789983e89
Reviewed-by: darcy, ihse
15 lines
247 B
Java
15 lines
247 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4960369
|
|
* @summary drop compound boxing operations
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=CompoundBox.out -XDrawDiagnostics CompoundBox.java
|
|
*/
|
|
|
|
class CompoundBox {
|
|
{
|
|
Float f = 3;
|
|
}
|
|
}
|