view run/command_line_debug_01.d @ 1536:89775df1607d

vtable can't be used as a template parameter
author thomask
date Mon, 07 May 2007 05:20:25 +0000
parents f87ba6507260
children
line wrap: on
line source

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

// __DSTRESS_DFLAGS__ -debug

module stress.run.command_line_debug_01;

int main(){
	debug{
		return 0;
	}else{
		static assert(0);
	}
}