863d115f33
* libjava.lang/initexc.java (fail): Static initializers must be able to complete normally. From Eric Blake. From-SVN: r58765
38 lines
557 B
Java
38 lines
557 B
Java
public class initexc
|
|
{
|
|
public static class fail
|
|
{
|
|
static
|
|
{
|
|
// Static initializers must be able to complete normally.
|
|
if (true)
|
|
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.
|
|
}
|
|
}
|
|
}
|