Retro68/gcc/libjava/testsuite/libjava.lang/pr26990.java
Wolfgang Thaller aaf905ce07 add gcc 4.70
2012-03-28 01:13:14 +02:00

14 lines
424 B
Java

public class pr26990
{
public static void main (String args[]) throws Exception
{
System.setSecurityManager(new SecurityManager()
{
public void checkExit(int status)
{
throw new SecurityException("This is a bug");
}
});
}
}