diff options
author | Ranjit Mathew <rmathew@hotmail.com> | 2005-01-10 18:07:22 +0000 |
---|---|---|
committer | Ranjit Mathew <rmathew@gcc.gnu.org> | 2005-01-10 18:07:22 +0000 |
commit | 4059e82d299fc8059e726e48b24b2c455b751a4a (patch) | |
tree | 765997c4d3a75aad30cd2f8efbc1ceab81aa9921 /libjava | |
parent | 5bf8aebc12015bb509e144a6962b29979e9acd2a (diff) | |
download | gcc-4059e82d299fc8059e726e48b24b2c455b751a4a.zip gcc-4059e82d299fc8059e726e48b24b2c455b751a4a.tar.gz gcc-4059e82d299fc8059e726e48b24b2c455b751a4a.tar.bz2 |
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
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 5 | ||||
-rw-r--r-- | libjava/testsuite/libjava.compile/PR19277.java | 7 | ||||
-rw-r--r-- | libjava/testsuite/libjava.compile/PR19277.xfail | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index cf605f6..ce668a4 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -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 diff --git a/libjava/testsuite/libjava.compile/PR19277.java b/libjava/testsuite/libjava.compile/PR19277.java new file mode 100644 index 0000000..61ed0bf --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR19277.java @@ -0,0 +1,7 @@ +class PR19277 +{ + void snafu (int[] array) + { + array.length++; + } +} diff --git a/libjava/testsuite/libjava.compile/PR19277.xfail b/libjava/testsuite/libjava.compile/PR19277.xfail new file mode 100644 index 0000000..e3b083b --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR19277.xfail @@ -0,0 +1 @@ +shouldfail |