re GNATS gcj/127 (gcj dumps core on method invocation on a primitive type)

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
This commit is contained in:
Bryce McKinlay 2000-03-06 10:25:53 +00:00 committed by Bryce McKinlay
parent 64dc53f34d
commit 2d5049639b
2 changed files with 16 additions and 0 deletions

View 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.

View File

@ -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();
}
}