From 2d5049639b338657b6b7b0471a5ec159101d775c Mon Sep 17 00:00:00 2001 From: Bryce McKinlay Date: Mon, 6 Mar 2000 10:25:53 +0000 Subject: [PATCH] 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 --- libjava/testsuite/ChangeLog | 5 +++++ libjava/testsuite/libjava.compile/PR127.java | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 libjava/testsuite/libjava.compile/PR127.java 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(); + } +} -- 2.30.2