For PR java/5057:

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

From-SVN: r48141
This commit is contained in:
Tom Tromey 2001-12-18 04:38:04 +00:00 committed by Tom Tromey
parent 33bd39a26a
commit ced816d5e6
3 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/* Test to make sure <clinit> is generated correctly. */
public class PR5057
{
public static int x;
static
{
x = 72;
}
public static void main (String[] args)
{
System.out.println (x);
}
}