* tests/threads/waitAndInterrupt.java: New test hanging CACAO.
[cacao.git] / tests / C.java
1 class C extends A {
2 static int cx = 1;
3
4 void m1( ) {ax = 100; cx=1;
5 }
6
7 public static void main(String[] s) {
8   A a;
9   B b = new B();
10   a=b;
11   b.m1();
12   b.m2();
13   cx++;
14 //  System.out.println("Hello World"));
15 //  System.out.println("C: "+ ax +"; B: "+b.ax +"; A: "+a.ax);
16  } 
17 }
18