Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / testsuite / libjava.lang / PR6085.java
blobf883bb5f83869152e02f6ef9dc720f5c3e60fc29
1 public class PR6085
3 public static void main(String[] args)
5 F1 f1 = new F1();
8 static class F1
10 F11 f11;
11 F12 f12;
13 F1()
15 f12 = new F12();
16 System.out.println (f12.i);
17 System.out.println (f12.k);
20 class F11
22 int k = 90;
23 F11() {}
26 class F12 extends F11
28 int i;
29 F12()
31 i = 17;