mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
14 lines
424 B
Java
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");
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|