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

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

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

module dtsress.run.s.static_if_04_A;

int main(){
	const int i = 1;

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