source: trunk/openjdk/langtools/test/tools/javac/ExtendArray.java

Last change on this file was 2, checked in by dmik, 15 years ago

Imported OpenJDK 6 b19 sources from Oracle.

File size: 326 bytes
Line 
1/*
2 * @test /nodynamiccopyright/
3 * @bug 4336282 4785453
4 * @summary Verify that extending an erray class does not crash the compiler.
5 *
6 * @compile/fail/ref=ExtendArray.out -XDstdout -XDdiags=%b:%l:%_%m ExtendArray.java
7 */
8
9// Note that an error is expected, but not a crash.
10
11public class ExtendArray extends Object[] {}
Note: See TracBrowser for help on using the repository browser.