view norun/d/debug_info_08_D.d @ 623:e90ad291644f

debug info: line numbers
author thomask
date Fri, 12 Aug 2005 21:58:26 +0000
parents
children 30ad3655b9b0
line wrap: on
line source

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

// @author@	Thomas Kühne <thomas-dloop@kuehne.THISISSPAM.cn>
// @date@	2005-08-01
// @uri@	news:dcl3e6$2hjr$1@digitaldaemon.com

// __DSTRESS_DFLAGS__ -gc
// __GDB_SCRIPT__ run\nbacktrace
// __GDB_PATTERN__ SIGFPE.*debug_info_08_D[.]d:21

module dstress.norun.d.debug_info_08_D;
 
void dummy(){
} 

int main(){
	int a=2;
	dummy();
	a=a/(a-2); /* divide by zero */
	return 0;
}