mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
5bf8aebc12
commit
4059e82d29
|
@ -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>
|
2005-01-09 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
PR libgcj/17069
|
PR libgcj/17069
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
class PR19277
|
||||||
|
{
|
||||||
|
void snafu (int[] array)
|
||||||
|
{
|
||||||
|
array.length++;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
shouldfail
|
Loading…
Reference in New Issue