* libjava.compile/PR238.java: New file. For PR gcj/238.
authorTom Tromey <tromey@cygnus.com>
Tue, 23 May 2000 22:38:07 +0000 (22:38 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Tue, 23 May 2000 22:38:07 +0000 (22:38 +0000)
From-SVN: r34116

libjava/testsuite/ChangeLog
libjava/testsuite/libjava.compile/PR238.java [new file with mode: 0644]

index bf82ab52a1880c370e250df668b8163d80a86ad7..1ef683256d07a36af6b79efc1f0f113934b5e1c9 100644 (file)
@@ -1,5 +1,7 @@
 2000-05-23  Tom Tromey  <tromey@cygnus.com>
 
+       * libjava.compile/PR238.java: New file.  For PR gcj/238.
+
        * libjava.lang/stringconst.out: New file.
        * libjava.lang/stringconst.java: New file.
 
diff --git a/libjava/testsuite/libjava.compile/PR238.java b/libjava/testsuite/libjava.compile/PR238.java
new file mode 100644 (file)
index 0000000..b876524
--- /dev/null
@@ -0,0 +1,9 @@
+public class PR238
+{
+  void foo(A a)
+  {
+    a.toString();
+  }
+
+  class A {}
+}