* testsuite/libjava.lang/PR19921.java: Use correct class name.

From-SVN: r95046
This commit is contained in:
Tom Tromey 2005-02-14 20:56:11 +00:00 committed by Tom Tromey
parent 3cc0646dbc
commit 5728cb6687
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-02-14 Tom Tromey <tromey@redhat.com>
* testsuite/libjava.lang/PR19921.java: Use correct class name.
2005-02-14 Tom Tromey <tromey@redhat.com>
* testsuite/libjava.lang/PR19921.out: Renamed from PR19929.out.

View File

@ -2,7 +2,7 @@ interface I {
void f(Object x);
}
class PR19929 {
class PR19921 {
static void g(I i) {
// gcj used to create invalid bytecode for this.
i.f(new Object[1][1]);