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
12 lines
144 B
Java
12 lines
144 B
Java
// Test case for PR127:
|
|
// gcj dumps core on method invocation on a primitive type
|
|
|
|
class PR127
|
|
{
|
|
void f()
|
|
{
|
|
int i;
|
|
i.f();
|
|
}
|
|
}
|