view run/typeid_07.d @ 1601:90bc51a580b7

pragma(lib, ...) is only allowed in declarations as of 1.037.
author Christian Kamm <kamm incasoftware de>
date Sun, 04 Jan 2009 22:42:52 +0100
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_07;

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