* libjava.lang/PR5057.out: New file.
* libjava.lang/PR5057.java: New file.
From-SVN: r48141
+2001-12-17 Tom Tromey <tromey@redhat.com>
+
+ For PR java/5057:
+ * libjava.lang/PR5057.out: New file.
+ * libjava.lang/PR5057.java: New file.
+
2001-12-13 Tom Tromey <tromey@redhat.com>
For PR libgcj/5103:
--- /dev/null
+/* 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);
+ }
+}