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

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 60f62efe116d
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=6003

module dstress.run.t.template_24_F;

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

template dolphin(char [] fish){
	const char [] dolphin = whale!(fish[0 .. 3]);
}

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

int main(){
	static assert(urchin == "ane");
	return 0;
}