view run/t/template_23_A.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents fc4331944688
children
line wrap: on
line source

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

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

module dstress.run.t.template_23_A;

template whale(char walrus){
	const char whale = walrus;
}

template dolphin(char[] fish){
	const char dolphin = whale!((fish[4]));
}

const char urchin = dolphin!("anenome");

int main(){
	static assert(urchin == 'o');
	return 0;
}