mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
14 lines
247 B
Java
14 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;
|
|
}
|
|
}
|