G19990304_01.out: New file.

* libjava.toshiba/G19990304_01.out: New file.
	* libjava.toshiba/G19990304_01.java: New file.

From-SVN: r28870
This commit is contained in:
Tom Tromey 1999-08-25 18:38:58 +00:00 committed by Tom Tromey
parent 20c96b2a12
commit 95c5608516
3 changed files with 24 additions and 0 deletions

View File

@ -1,5 +1,8 @@
1999-08-25 Tom Tromey <tromey@cygnus.com>
* libjava.toshiba/G19990304_01.out: New file.
* libjava.toshiba/G19990304_01.java: New file.
* libjava.lang/G19990310_01.out: New file.
* libjava.lang/G19990310_01.java: New file.

View File

@ -0,0 +1,18 @@
public class G19990304_01
{
public static void main (String[] args)
{
Object[] arrayObj = new String[3];
String[] arrayStr = new String[3];
try
{
System.out.println ("pass 1");
arrayObj[0] = arrayStr;
}
catch (RuntimeException e)
{
System.out.println ("RuntimeException");
}
System.out.println ("pass 2");
}
}

View File

@ -0,0 +1,3 @@
pass 1
RuntimeException
pass 2