From: Bryce McKinlay Date: Mon, 6 Mar 2000 10:25:53 +0000 (+0000) Subject: re GNATS gcj/127 (gcj dumps core on method invocation on a primitive type) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2d5049639b338657b6b7b0471a5ec159101d775c;p=gcc.git re GNATS gcj/127 (gcj dumps core on method invocation on a primitive type) 2000-03-06 Bryce McKinlay * libjava.compile/PR127.java: New file. PR 127 test case from Joerg Brunsmann. From-SVN: r32356 --- diff --git a/libjava/testsuite/ChangeLog b/libjava/testsuite/ChangeLog index 7d393bc4eca..6b7f1b50d42 100644 --- a/libjava/testsuite/ChangeLog +++ b/libjava/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2000-03-06 Bryce McKinlay + + * libjava.compile/PR127.java: New file. + PR 127 test case from Joerg Brunsmann. + 2000-03-05 Tom Tromey * 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 index 00000000000..6a2e699a46b --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR127.java @@ -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(); + } +}