view run/typeid_15.d @ 1598:23834ba9736a

Fixed typos in test cases. See D bug 2174.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:03:25 +0200
parents 111c6744074d
children
line wrap: on
line source

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

module dstress.run.typeid_15;

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