aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/G19990303_02.java
diff options
context:
space:
mode:
author(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-20 19:33:11 +0000
committer(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-20 19:33:11 +0000
commitf9b8acf532be1306e87a2aca5e311149e44a38fb (patch)
tree756e826e594454f3376185b80f5895fdc5e1306b /libjava/testsuite/libjava.lang/G19990303_02.java
parent50fd6b48dca019bdefd2ec1f4caa93b42ce02574 (diff)
This commit was manufactured by cvs2svn to create tagcondexec_merge_20000420
'condexec_merge_20000420'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/tags/condexec_merge_20000420@33290 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/testsuite/libjava.lang/G19990303_02.java')
-rw-r--r--libjava/testsuite/libjava.lang/G19990303_02.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/libjava/testsuite/libjava.lang/G19990303_02.java b/libjava/testsuite/libjava.lang/G19990303_02.java
deleted file mode 100644
index 19c8e305e2a..00000000000
--- a/libjava/testsuite/libjava.lang/G19990303_02.java
+++ /dev/null
@@ -1,19 +0,0 @@
-public class G19990303_02
-{
- public static void main (String[] args)
- {
- int i = -1;
- try
- {
- System.out.println ("Pass 1");
- int[][][] arrayInt = new int[i][1][1];
- int ii = arrayInt[i - 1][0][0];
- System.out.println ("Pass 2");
- }
- catch (NegativeArraySizeException e)
- {
- System.out.println ("Pass NegativeArraySizeException");
- }
- System.out.println ("Pass 3");
- }
-}