view run/default_argument_07.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents e77e4444c170
children 6e4063f99377
line wrap: on
line source

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

// @author@	tetsuya <tetsuya_member@pathlink.com>
// @date@	2004-11-15
// @uri@	news:cnaidd$2rnr$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/2275

module dstress.run.default_argument_07;

template Template(int L){
	int i = L;
	int test(int b = Template!(9).i) {
		return b;
	}
}

int main(){
	mixin Template!(10);
	assert(test()==9);
	return 0;
}