* configure.ac (AC_CONFIG_FILES): Re-enabled resolving since Edwin
[cacao.git] / tests / AA.java
1 public class AA
2 {
3 static int xx;
4
5 public void f9() {
6   int x = 1;
7 }
8 public static void main(String[] s) {
9 AA2 a;
10 DD d = new DD();
11 EE e = new EE();
12 int x = 1;
13
14 for (int i=1;i<5;i++) {
15 xx = 5;
16 if (x==1)
17   a=d;
18 else
19   a=e;
20 a.f();
21
22
23 }
24 }
25 }