view nocompile/t/template_16.d @ 1489:b8c0195059d9

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

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

// @author@	Nick <Nick_member@pathlink.com>
// @date@	2005-06-10
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4272
// @desc@	compiler hangs on recursive template

// __DSTRESS_ELINE__ 15

module dstress.nocompile.t.template_16;

template Template(int i) {
	mixin Template!(i+1);
}

mixin Template!(0);