view run/typeid_30.d @ 1617:2c10afcfcf76

Move run/n/nested_class_04_{C,D} to nocompile. See DMD bug 80.
author Christian Kamm <kamm incasoftware de>
date Thu, 23 Jul 2009 19:49:42 +0200
parents 111c6744074d
children
line wrap: on
line source

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

module dstress.run.typeid_30;

int main(){
	TypeInfo ti = typeid(ushort*);
	assert(!(ti is null));
	assert(ti.tsize==(ushort*).sizeof);
	assert(ti.toString()=="ushort*");
	return 0;
}