mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 01:40:04 +08:00
2640ad1110
* libjava.lang/initexc.java: New file. * libjava.lang/initexc.out: New file. From-SVN: r58761
36 lines
482 B
Java
36 lines
482 B
Java
public class initexc
|
|
{
|
|
public static class fail
|
|
{
|
|
static
|
|
{
|
|
throw new NullPointerException("nope");
|
|
}
|
|
|
|
public static int val ()
|
|
{
|
|
return 23;
|
|
}
|
|
}
|
|
|
|
public static void main (String[] args)
|
|
{
|
|
try
|
|
{
|
|
System.out.println (fail.val ());
|
|
}
|
|
catch (ExceptionInInitializerError _)
|
|
{
|
|
// Ok.
|
|
}
|
|
try
|
|
{
|
|
System.out.println (fail.val ());
|
|
}
|
|
catch (NoClassDefFoundError _)
|
|
{
|
|
// Ok.
|
|
}
|
|
}
|
|
}
|