Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
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;
|
|
}
|
|
}
|