view addon/private_08_Z.d @ 1606:ebff718ff18b

Fix tests from #3. Thanks Don!
author Christian Kamm <kamm incasoftware de>
date Mon, 13 Apr 2009 13:47:03 +0200
parents 3bceadfda331
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

module addon.private_08_Z;

private class PClass{
	int dummy;
}

private interface PInterface{
	void dummy();
}

private enum PEnum{
	DUMMY = 1
}