Testsuite changes for PR java/23431.

* testsuite/libjava.jacks/jacks.xfail: Remove 8.1.1.1-12 and
 	8.4.6.2-hiding-5.
	* testsuite/libjava.compile/PR23431_1.java: New testcase.
	* testsuite/libjava.compile/PR23431_2.java: Likewise.
	* testsuite/libjava.compile/PR23431_1.xfail: New file.
	* testsuite/libjava.compile/PR23431_2.xfail: Likewise.

From-SVN: r103910
This commit is contained in:
Ranjit Mathew 2005-09-05 15:04:40 +00:00 committed by Ranjit Mathew
parent 75d1a48521
commit 3b4fb454b1
6 changed files with 30 additions and 2 deletions

View file

@ -0,0 +1,9 @@
abstract class Foo
{
public abstract void bar( );
}
class PR23431_1 extends Foo
{
private void bar( ) { }
}

View file

@ -0,0 +1 @@
shouldfail

View file

@ -0,0 +1,9 @@
interface Foo
{
public void bar( );
}
class PR23431_2 implements Foo
{
private void bar( ) { }
}

View file

@ -0,0 +1 @@
shouldfail