re PR java/19921 (wrong argument count for invokeInterface with new multidimensional array)
* testsuite/libjava.lang/PR19921.out: Renamed from PR19929.out. * testsuite/libjava.lang/PR19921.java: Renamed from PR19929.java. From-SVN: r95045
This commit is contained in:
parent
90689ae11d
commit
3cc0646dbc
3 changed files with 5 additions and 0 deletions
11
libjava/testsuite/libjava.lang/PR19921.java
Normal file
11
libjava/testsuite/libjava.lang/PR19921.java
Normal file
|
@ -0,0 +1,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) { }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue