gcc/libjava/testsuite/libjava.compile/PR19277.java
Ranjit Mathew 4059e82d29 re PR java/19277 (allows array.length++ although it is final)
* testsuite/libjava.compile/PR19277.java: New file for PR java/19277.
        * testsuite/libjava.compile/PR19277.xfail: Likewise.

From-SVN: r93146
2005-01-10 18:07:22 +00:00

8 lines
73 B
Java

class PR19277
{
void snafu (int[] array)
{
array.length++;
}
}