view run/typeid_84.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 32f7f8ce5e51
children
line wrap: on
line source

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

// @author@	ahiru <ahiru@1dk.jp>
// @date@	2005-03-01
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3072

module dstress.run.typeid_84;

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