anon4.java 574 Bytes
Newer Older
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
// Class anon4
// Generated on Wed Dec 29 10:07:09 PST 1999
//


class anon4 {

  private int field = 3;

  itf bar () {
    return new itf () { 
      int count = 5;
      public void setCount (int j) { count = 3+field; }
      public int getCount () { return count+field; }
    } ;
  }

  void test () {
   itf x = bar ();
   System.out.println (x.getCount ());
  }
  
  public static void main (String[] arg)
  {
    System.out.println ("Testing class `anon4'...");
    new anon4 ().test ();
  }
}

interface itf { void setCount (int j); int getCount(); int count = 0; }