aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/PR19929.java
blob: f1deea253973e48f7f84bbbf42fff0fd23a5e6e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
interface I {
    void f(Object x);
}

class PR19929 {
    static void g(I i) {
      // gcj used to create invalid bytecode for this.
      i.f(new Object[1][1]);
    }
  public static void main(String[] args) { }
}