view run/typeid_60.d @ 1555:01c289574a6d

DMD-1.011: ref
author thomask
date Mon, 23 Jul 2007 18:45:40 +0000
parents 111c6744074d
children
line wrap: on
line source

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

module dstress.run.typeid_60;

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