view run/o/opCat_18_B.d @ 1535:20d8ee6523e1

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:57 +0000
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	Don Clugston <dac@nospam.com.au>
// @date@	2005-12-30
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5924

module dstress.run.t.opCat_18_B;

template dog(char[] duck){
	const int dog = 2;
}

const int aardvark = dog!("cat" ~ '2');

int main(){
	if(aardvark == 2){
		return 0;
	}
}