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

View File

@ -1,3 +1,8 @@
2005-01-10 Ranjit Mathew <rmathew@hotmail.com>
* testsuite/libjava.compile/PR19277.java: New file for PR java/19277.
* testsuite/libjava.compile/PR19277.xfail: Likewise.
2005-01-09 Michael Koch <konqueror@gmx.de>
PR libgcj/17069

View File

@ -0,0 +1,7 @@
class PR19277
{
void snafu (int[] array)
{
array.length++;
}
}

View File

@ -0,0 +1 @@
shouldfail