Commit dea4b2db by Tom Tromey Committed by Tom Tromey

throwit.out: Fixed output to be correct.

	* libjava.jni/throwit.out: Fixed output to be correct.

	* libjava.jni/noclass.java (main): `find_it' throws an exception.

From-SVN: r33291
parent 1368ee70
2000-04-20 Tom Tromey <tromey@cygnus.com>
* libjava.jni/throwit.out: Fixed output to be correct.
* libjava.jni/noclass.java (main): `find_it' throws an exception.
2000-04-16 Anthony Green <green@redhat.com>
* libjava.compile/PR209.java: New file.
......
......@@ -11,8 +11,15 @@ public class noclass
public static void main (String[] args)
{
try
{
find_it ();
// If find_it() causes a crash, we won't be running this next line.
}
catch (Throwable _)
{
// If find_it() causes a crash, or doesn't throw an exception,
// we won't be running this next line.
System.out.println ("Ok");
}
}
}
class java.lang.UnknownError
the word is zardoz
class java.lang.Throwable
zardoz is the word
class java.lang.Throwable
the word is zardoz
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment