re GNATS gcj/127 (gcj dumps core on method invocation on a primitive type)
authorBryce McKinlay <bryce@albatross.co.nz>
Mon, 6 Mar 2000 10:25:53 +0000 (10:25 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Mon, 6 Mar 2000 10:25:53 +0000 (10:25 +0000)
2000-03-06  Bryce McKinlay  <bryce@albatross.co.nz>

        * libjava.compile/PR127.java: New file.
        PR 127 test case from Joerg Brunsmann.

From-SVN: r32356

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

index 7d393bc4eca8e559a468641f028992151f290e82..6b7f1b50d422065f514854e90b719111b1417b8c 100644 (file)
@@ -1,3 +1,8 @@
+2000-03-06  Bryce McKinlay  <bryce@albatross.co.nz>
+
+       * libjava.compile/PR127.java: New file.
+        PR 127 test case from Joerg Brunsmann.
+
 2000-03-05  Tom Tromey  <tromey@cygnus.com>
 
        * lib/libjava.exp (test_libjava): Document `shouldfail' token.
diff --git a/libjava/testsuite/libjava.compile/PR127.java b/libjava/testsuite/libjava.compile/PR127.java
new file mode 100644 (file)
index 0000000..6a2e699
--- /dev/null
@@ -0,0 +1,11 @@
+// Test case for PR127:
+// gcj dumps core on method invocation on a primitive type 
+
+class PR127 
+{
+  void f() 
+  {
+    int i;
+    i.f();
+  }
+}