OSDN Git Service

2007-03-19 Andrew Haley <aph@redhat.com>
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / libjava.lang / PR19921.java
1 interface I {
2     void f(Object x);
3 }
4
5 class PR19921 {
6     static void g(I i) {
7       // gcj used to create invalid bytecode for this.
8       i.f(new Object[1][1]);
9     }
10   public static void main(String[] args) { }
11 }