This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Patch: PR 127 test case
- To: java-patches at sourceware dot cygnus dot com
- Subject: Patch: PR 127 test case
- From: Bryce McKinlay <bryce at albatross dot co dot nz>
- Date: Mon, 06 Mar 2000 23:45:27 +1300
I checked in the test case from PR gcj/127.
regards
[ bryce ]
2000-03-06 Bryce McKinlay <bryce@albatross.co.nz>
* libjava.compile/PR127.java: New file.
* libjava.compile/PR127.xfail: New file.
PR 127 test case from Joerg Brunsmann.
// Test case for PR127:
// gcj dumps core on method invocation on a primitive type
class PR127
{
void f()
{
int i;
i.f();
}
}
shouldfail