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
This commit is contained in:
Ranjit Mathew
2005-01-10 18:07:22 +00:00
committed by Ranjit Mathew
parent 5bf8aebc12
commit 4059e82d29
3 changed files with 13 additions and 0 deletions
@@ -0,0 +1,7 @@
class PR19277
{
void snafu (int[] array)
{
array.length++;
}
}