G19990310_01.out: New file.

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

From-SVN: r28865
This commit is contained in:
Tom Tromey 1999-08-25 17:54:55 +00:00 committed by Tom Tromey
parent 5a4f6418af
commit 3d31bc7f58
3 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,21 @@
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);
}
}

View file

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