gcc/libjava/testsuite/libjava.compile/PR20312.java
Ranjit Mathew ca1593fda4 re PR java/20312 (No warning on bad method)
* testsuite/libjava.compile/PR20312.java: New file.
	* testsuite/libjava.compile/PR20312.xfail: Likewise.
	* testsuite/libjava.jacks/jacks.xfail: Remove 9.2-implicit-15.

From-SVN: r96252
2005-03-10 18:57:01 +00:00

9 lines
162 B
Java

/* Can't throw what the overridden method doesn't. */
public class PR20312
{
public String toString( ) throws java.io.IOException
{
return "SNAFU";
}
}