gcc/libjava/testsuite/libjava.compile/PR127.java
Bryce McKinlay 2d5049639b 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
2000-03-06 10:25:53 +00:00

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