view nocompile/t/template_29_C.d @ 861:cb9e1f41478c

Chris Miller <chris@dprogramming.com> 2006-02-20 news:op.s5anrdhxpo9bzi@moe
author thomask
date Fri, 24 Feb 2006 07:26:09 +0000
parents 79b8a1e5c2d0
children b8c0195059d9
line wrap: on
line source

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

// @author@	BCS <BCS_member@pathlink.com>
// @date@	2006-02-16
// @uri@	news:dt2eo3$tea$1@digitaldaemon.com
// @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);
}