view nocompile/default_argument_05.d @ 564:e77e4444c170

partial metadata fix
author thomask
date Thu, 02 Jun 2005 15:42:31 +0000
parents 1f6cf5ccfbc9
children 52c9e86b6486
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
// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2275

// __DSTRESS_ELINE__ 16

module dstress.nocompile.default_argument_05;

template Template(int L){
	int i;
	void test(int b = Template.i) {
	}
}

int main(){
	mixin Template!(10);
	return 0;
}