view run/typeid_09.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents a33ad7189d21
children 6e4063f99377
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@	nntp://digitalmars.com/digitalmars.D.bugs/2254

module dstress.run.typeid_09;

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