view run/typeid_06.d @ 1536:89775df1607d

vtable can't be used as a template parameter
author thomask
date Mon, 07 May 2007 05:20:25 +0000
parents 6e4063f99377
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_06;

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