view run/typeid_81.d @ 1546:f425ddcbbcd6

Aziz K?ksal <aziz.kerim@gmail.com> 2007-07-20 http://d.puremagic.com/issues/show_bug.cgi?id=1358
author thomask
date Mon, 23 Jul 2007 18:36:56 +0000
parents e38919011244
children
line wrap: on
line source

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

module dstress.run.typeid_81;

enum {
	A,
	B
}

int main(){
	TypeInfo ti = typeid(typeof(A));
	assert(!(ti is null));
	assert(ti.tsize==(typeof(A)).sizeof);
	return 0;
}