OSDN Git Service

* libjava.lang/pr83.xfail: Removed.
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / libjava.compile / PR127.java
1 // Test case for PR127:
2 // gcj dumps core on method invocation on a primitive type 
3
4 class PR127 
5 {
6   void f() 
7   {
8     int i;
9     i.f();
10   }
11 }