Second try.
[cacao.git] / tests / AA.java
1 public class AA
2 {
3 public void f() {
4   int x = 1;
5 }
6 public static void main(String[] s) {
7 AA a;
8 DD d = new DD();
9 EE e = new EE();
10 int x = 1;
11
12 if (x==1)
13   a=d;
14 else
15   a=e;
16 a.f();
17 }
18 }