view run/s/static_if_06_A.d @ 1489:b8c0195059d9

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

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

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

module dstress.run.s.static_if_06_A;

template t(int n){
	static if (n==1) {
		int a = n + 1;
	} else {
		int a = -n;
	}
}

int main(){
	mixin t!(2);

	assert(a == -2);

	return 0;
}