view run/b/bug_expression_525_A.d @ 856:7b2c5a101190

meta data maintenance
author thomask
date Sun, 19 Feb 2006 12:16:35 +0000
parents 98e71577fcc1
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_A;

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

const char [] s = t!("a"[0 .. 1]);

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