view nocompile/bug_20050330_A.d @ 491:f6a24d1475f2

template loop Regan Heath <regan@netwin.co.nz> 2005-03-30 news:opsof4hwgy23k2f5@nrage.netwin.co.nz
author thomask
date Wed, 27 Apr 2005 12:21:18 +0000
parents
children b8c0195059d9
line wrap: on
line source

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

// @author@	Regan Heath <regan@netwin.co.nz>
// @date@	2005-03-30
// @uri@	news:opsof4hwgy23k2f5@nrage.netwin.co.nz

// __DSTRESS_ELINE__ 14

module dstress.nocompile.bug_20050330_A;

template Blah(int a, alias B){
	mixin Blah!(a, B);
}

int main(){
	int a;
	mixin Blah!(5,a);
	return 0;
}