Newer
Older
zweic / tests / 4 / michitest-001.zwei
@ajaggi ajaggi on 27 Dec 2005 170 bytes Added some testfiles
class A {
	Int x;
}

class B {
	Int x;
	Int equal(B that) {
	return this.x == that.x
	}
}

class C extends B{
}

{
	printInt(new B(1).equal(new C(2)));
	printChar(10);
}