blob: 88db93e3e12efafe2e4ccb3082ca154ef65d6be1 [file] [log] [blame]
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");
}
});
}
}