1 // Class instinit
2 // Generated on Wed Feb  2 12:31:16 PST 2000
3 // Simple instance initializer test case.
4 
5 class instinit {
6 
7     String buffer = "No Oink! Oink!";
8 
9     /* Instance initializer */
10     {
11         System.out.println ("Oinking...");
12     }
13     {
14         buffer = "Oink! Oink!";
15     }
16 
main(String[] arg)17     public static void main (String[] arg)
18     {
19         System.out.println ("Testing class `instinit'...");
20         System.out.println (new instinit ().buffer);
21     }
22 }
23