mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-06 20:50:26 +08:00
9 lines
162 B
Java
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";
|
||
|
}
|
||
|
}
|