view nocompile/s/static_if_03_B.d @ 555:1300c1aab744

StaticIfCondition (nocompile)
author thomask
date Sat, 21 May 2005 19:32:38 +0000
parents
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 18

module dstress.nocompile.s.static_if_03_B;

void test(){
	static if(1){
		int a;
		static if(1){
			int b;
				static if(1)
					int i;
		}
	}
	int i;
}