view run/typeid_51.d @ 334:c1ca2f37362b

added TypeInfo.toString checks to detect 'cheating'
author thomask
date Fri, 18 Mar 2005 11:35:53 +0000
parents f4e9069c7993
children 111c6744074d
line wrap: on
line source

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

module dstress.run.typeid_51;

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