blob: 968009e45e1e8b43b878a015c19423501ac4b48d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
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.
}
}
}
|