Newer
Older
zweic / tests / four / classes0.zwei
@glproj03 glproj03 on 28 Dec 2005 128 bytes wicked cool test file added: script.sh
class C0
{
	Int b;
}

class C1 extends C0 
{
	Int f1(Int a, Int b)
	{
		Int y = 0;
		this.b;
		printInt(a);
		return y
	}
}
null