view run/command_line_debug_02.d @ 85:659bb018c489

1) changed "?DSTRESS_FLAGS?" to "__DSTRESS_DFLAGS__" in order to cope with botched shells 2) added several bug reports 3) fixed some test cases
author thomask
date Sun, 31 Oct 2004 21:21:04 +0000
parents 91feffeeafa6
children f87ba6507260
line wrap: on
line source

// __DSTRESS_DFLAGS__ -debug=1

module stress.run.command_line_debug_02;

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