This is the mail archive of the java-patches@sourceware.cygnus.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: pr 260 test case


I just found out that some of my email was being silently dropped by
sourceware.  Here's this again.

I'm checking this in.

2000-06-23  Tom Tromey  <tromey@cygnus.com>

	For PR gcj/260:
	* libjava.lang/PR260.out: New file.
	* libjava.lang/PR260.java: New file.

Tom

Index: libjava.lang/PR260.java
===================================================================
RCS file: PR260.java
diff -N PR260.java
--- /dev/null	Tue May  5 13:32:27 1998
+++ PR260.java	Fri Jun 23 14:53:29 2000
@@ -0,0 +1,15 @@
+class A
+{
+  static
+  {
+    System.out.println ("A initialized");
+  }
+}
+
+public class PR260
+{
+  public static void main(String args[])
+  {
+    Class klass = A.class;
+  }
+}
Index: libjava.lang/PR260.out
===================================================================
RCS file: PR260.out
diff -N PR260.out
--- /dev/null	Tue May  5 13:32:27 1998
+++ PR260.out	Fri Jun 23 14:53:29 2000
@@ -0,0 +1 @@
+A initialized

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]