view run/typeid_08.d @ 1487:6e4063f99377

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 12:29:15 +0000
parents 52c9e86b6486
children
line wrap: on
line source

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

// @author@	Ilya Zaitseff <sark7@mail333.com>
// @date@	2004-11-12
// @uri@	news:opshbm24dqaaezs2@ilya.tec.amursk.ru
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2254

module dstress.run.typeid_08;

int main(){
	TypeInfo ti = typeid(cdouble[]);
	assert(!(ti is null));
	return 0;
}