aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/instinit2.java
blob: 4acb157fa640335fa9509ada21e958e0479b66e1 (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
// Class ii2
// Generated on Wed Feb  2 17:52:49 PST 2000
// The instance initializer throws a checked exception. This is OK
// since the constructors declares it in its `throws' clause -- at
// least that's what the specs are saying.

class ii2 {

    String buffer = "Oink Oink!";

    {
        System.out.println ("Checking the oink...");
        if (buffer != null)
            throw new Exception ("It just oinked");
    }

    ii2 () throws Exception
    {
        System.out.println ("Ctor");
    }

    public static void main (String[] arg)
    {
        System.out.println ("Testing class `ii2'...");
        try {
            System.out.println (new ii2 ().buffer);
        } catch (Exception e) {
            System.out.println (e.toString());
        }
    }
}