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.
38 lines
1,023 B
Java
38 lines
1,023 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4309152
|
|
* @summary Compiler silently generates bytecode that exceeds VM limits
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=ArrayDims2.out -XDrawDiagnostics ArrayDims2.java
|
|
*/
|
|
|
|
class ArrayDims2 {
|
|
static Object
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][][][][][]
|
|
[][][][][][] o; // 256 = too many
|
|
}
|