jdk-24/test/langtools/tools/javac/CompoundBox.java
2017-09-12 19:03:39 +02:00

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;
}
}