blob: 6a2e699a46bf7b8ad9e9ecf6c4f4d54ba93f90a7 [file]
// Test case for PR127:
// gcj dumps core on method invocation on a primitive type
class PR127
{
void f()
{
int i;
i.f();
}
}