view norun/d/debug_info_08_D.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 7e8e5013a030
children
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
// __DSTRESS_TORTURE_REQUIRE__ -g
// __GDB_SCRIPT__ run\nbacktrace
// __GDB_PATTERN__ SIGFPE.*debug_info_08_D[.]d:22

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;
}