view run/m/mangleof_14_A.d @ 1091:9dcac8d4e97f

post DMD-0.163 review
author thomask
date Fri, 21 Jul 2006 11:15:26 +0000
parents 7b2c5a101190
children b8c0195059d9
line wrap: on
line source

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

// @author@	Don Clugston <dac@nospam.com.au>
// @date@	2005-12-06
// @uri@	news:dn488i$11kk$1@digitaldaemon.com

module dstress.run.m.mangleof_14_A;

template a(size_t n){
	const size_t a = n;
}

template b(f) {
	const int b = a!(f.mangleof.length);
}

int main(){
	int c = b!(int[2]);

	if(c == 3){
		return 0;
	}
}