Merged with cldc-branch
[cacao.git] / tests / D.java
1 class D extends A {
2 int ax = 133;
3
4 void m1( ) {ax = ax + 10; 
5   // System.out.println("In D.m1: "+ax);
6   }
7
8 B m3( ) {
9 B b = new B();
10 b.bx++;
11 return b;
12 }
13 }