aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/PR374.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/testsuite/libjava.compile/PR374.java')
-rw-r--r--libjava/testsuite/libjava.compile/PR374.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/PR374.java b/libjava/testsuite/libjava.compile/PR374.java
new file mode 100644
index 0000000..e96ab5f
--- /dev/null
+++ b/libjava/testsuite/libjava.compile/PR374.java
@@ -0,0 +1,9 @@
+public class PR374
+{
+ Object a, b[], c[];
+
+ public void foo ()
+ {
+ c = new Object[10];
+ }
+}