mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
12 lines
217 B
Java
12 lines
217 B
Java
interface I {
|
|
void f(Object x);
|
|
}
|
|
|
|
class PR19921 {
|
|
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) { }
|
|
}
|