jdk-24/test/langtools/tools/javac/ExtendArray.java

12 lines
314 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @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
2007-12-01 00:00:00 +00:00
*/
// Note that an error is expected, but not a crash.
public class ExtendArray extends Object[] {}