Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / testsuite / libjava.lang / tp.java
blobb6d9fbec48f08ec01b6d7e090e58e65f3b1cbff8
1 // Class tp
2 // Generated on Thu Nov 4 16:35:03 PST 1999
3 //
5 class tp {
6 private int i;
7 void foo () {
8 tp.z x1 = new z();
9 tp.z.y x = x1.new y();
10 x.bar ();
11 x.print();
13 public static void main (String[] arg)
15 System.out.println ("Testing class `tp'...");
16 new tp ().foo();
18 class z {
19 private int j;
20 void foo () {
21 tp.this.i = 3;
23 class y {
24 private int k;
25 void bar () {
26 tp.this.i = 3;
27 z.this.j = 4;
28 y.this.k = 34;
30 void print () {
31 System.out.println ("i="+i+", j="+j+", k="+k);