aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/private_indirect_read.java
blob: 9a37bfdac11a94e6704485cd36e024e048282d13 (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
// Class private_indirect_read
// Generated on Tue Nov 16 15:34:56 UTC 1999
//

class private_indirect_read {

  private int foo;

  class private_indirect_read_inner {
    void test () {
    }
    class other {
      void testx () {
        int x = foo;
        System.out.println ("x="+x);
      }
    }

  }
  void foo ()
  {
    foo=670;
    private_indirect_read_inner inn = this.new private_indirect_read_inner ();
    private_indirect_read_inner.other o = inn.new other ();
    o.testx();
  }  
  public static void main (String[] arg)
  {
    System.out.println ("Testing class `private_indirect_read'...");
    new private_indirect_read().foo ();
  }
}