mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-27 03:49:03 +08:00
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();
|
||
|
}
|
||
|
}
|