* configure.ac (AC_CONFIG_FILES): Re-enabled resolving since Edwin
[cacao.git] / tests / IIexample.java
1 class IIexample {
2 public static void main (String[] args) {
3 ff();
4 gg();
5 }
6
7 static void ff() {
8 II i1 = new IIBB();
9 i1.foo();
10 }
11
12 static void gg() {
13 //II i2 = new IICC();
14 II i2 = new IIBB();  // so unique
15 i2.foo();
16 }
17
18 }