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.
11 lines
314 B
Java
11 lines
314 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4336282 4785453
|
|
* @summary Verify that extending an erray class does not crash the compiler.
|
|
*
|
|
* @compile/fail/ref=ExtendArray.out -XDrawDiagnostics ExtendArray.java
|
|
*/
|
|
|
|
// Note that an error is expected, but not a crash.
|
|
|
|
public class ExtendArray extends Object[] {}
|