view run/b/bug_expression_525_D.d @ 1269:c99e8aac0e0c

partial review
author thomask
date Fri, 22 Dec 2006 13:17:55 +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:dn45s8$vd9$1@digitaldaemon.com

module dstress.run.b.bug_expression_525_D;

template t(){
	const char [] t = "hello";
}

const char [] s = t!();

int main(){
	if(s == "hello"){
		return 0;
	}
}