1 // Class inner2
2 // Generated on Mon Dec  6 14:32:34 PST 1999
3 //
4 
5 class inner2 {
6   int foo = 1999;
foo()7   void foo ()
8   {
9     inner2.this.foo = 666;
10     System.out.println (inner2.this.foo);
11   }
print()12   void print () {System.out.println (foo);}
main(String[] arg)13   public static void main (String[] arg)
14   {
15     System.out.println ("Testing class `inner2'...");
16     new inner2().foo ();
17   }
18 }
19