aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/indirect.java
blob: 22bdebc5bb8640cda96b829b2c49957e759f1cfe (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
// Class indirect
// Generated on Tue Nov 16 15:53:14 UTC 1999
// Several indirection to enclosing class

class indirect {

  private int foo;

  class indirect_inner {
    class other {
      class inner {
        void test () {
          int x = foo;
          System.out.println ("x="+foo);
	  foo = 671;
        }
      }
    }

  }
  void foo ()
  {
    foo = 670; 
    indirect_inner inn = this.new indirect_inner ();
    this.new indirect_inner().new other().new inner ().test ();
    System.out.println ("foo="+foo);
  }  
  public static void main (String[] arg)
  {
    System.out.println ("Testing class `indirect'...");
    new indirect().foo ();
  }
}