view run/bug_cg87_279_C.d @ 736:1e6afb94ce6d

updated meta data for Torture
author thomask
date Sat, 12 Nov 2005 07:28:46 +0000
parents f37683b0277b
children b8c0195059d9
line wrap: on
line source

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

// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
// @date@	2005-03-27
// @uri@	news:d26pug$2m4m$1@digitaldaemon.com

module dstress.run.bug_cg87_279_C;

real x;
    
void foo(){
	x = -x;
}

void bar(){
	return foo();
}

int main(){
	x=2;
	bar();
	assert(x==-2);
	return 0;
}