view nocompile/t/template_17_A.d @ 722:283709990093

Don Clugston <dac@nospam.com.au> 2005-10-27 news:djq89r$1i6e$1@digitaldaemon.com
author thomask
date Fri, 28 Oct 2005 21:31:14 +0000
parents
children b8c0195059d9
line wrap: on
line source

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

// @author@	Don Clugston <dac@nospam.com.au>
// @date@	2005-10-27
// @uri@	news:djq89r$1i6e$1@digitaldaemon.com

module dstress.nocompile.t.template_17_A;

template t(int i){
	const int x = t!(i+1).x;
}

void main(){
	int i = t!(0).x;
}