author | duke |
Wed, 05 Jul 2017 23:01:50 +0200 | |
changeset 44228 | e46434c65a2b |
parent 6150 | d055fa8ced62 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
3 |
* @bug 4336282 4785453 |
|
4 |
* @summary Verify that extending an erray class does not crash the compiler. |
|
5 |
* |
|
6150 | 6 |
* @compile/fail/ref=ExtendArray.out -XDrawDiagnostics ExtendArray.java |
10 | 7 |
*/ |
8 |
||
9 |
// Note that an error is expected, but not a crash. |
|
10 |
||
11 |
public class ExtendArray extends Object[] {} |