view nocompile/t/template_29_C.d @ 1518:5b8f89bc1b52

fixed typo
author thomask
date Fri, 27 Apr 2007 17:21:55 +0000
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	BCS <BCS_member@pathlink.com>
// @date@	2006-02-16
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6290
// @desc@	Internal error: e2ir.c 736

module dstress.nocompile.t.template_29_C;

template foo(uint i){
	const uint foo = foo!(i);
}

int main(){
	return foo!(uint.max);
}