Commit 3d31bc7f by Tom Tromey Committed by Tom Tromey

G19990310_01.out: New file.

	* libjava.lang/G19990310_01.out: New file.
	* libjava.lang/G19990310_01.java: New file.

From-SVN: r28865
parent 5a4f6418
1999-08-25 Tom Tromey <tromey@cygnus.com>
* libjava.lang/G19990310_01.out: New file.
* libjava.lang/G19990310_01.java: New file.
1999-08-17 Tom Tromey <tromey@cygnus.com>
From Bryce McKinlay:
......
public class G19990310_01
{
public static void main (String[] args)
{
int i = 0;
try
{
System.out.println ("pass 1");
i++;
}
finally
{
System.out.println ("pass 2");
i++;
}
if (i == 2)
System.out.println ("OK");
else
System.out.println ("NG i = " + i);
}
}
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