view run/s/static_if_01_A.d @ 1560:36bedfa079e6

D1 -> D2 : 2/N
author thomask
date Sun, 19 Aug 2007 19:15:01 +0000
parents c4c154735ebb
children
line wrap: on
line source

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

module dstress.run.s.static_if_01_A;

static if (1){
	int i = 9;
}else{
	static assert(0);
}

int main(){
	if(i == 9){
		return 0;
	}
}