view run/o/opCat_18_A.d @ 795:3b547ab9ee53

fixed typos
author thomask
date Sun, 15 Jan 2006 11:20:57 +0000
parents 713c177da257
children b8c0195059d9
line wrap: on
line source

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

// @author@	Don Clugston <dac@nospam.com.au>
// @date@	2005-12-30
// @uri@	news:dp2u3b$1osl$1@digitaldaemon.com

module dstress.run.o.opCat_18_A;

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

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

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