view run/bug_cg87_2393_B.d @ 1622:d402aa53926c

Add test for bug 3092 written by Manuel K?nig
author Leandro Lucarella <llucax@gmail.com>
date Tue, 19 Oct 2010 19:18:23 -0300
parents ec5e144583ea
children
line wrap: on
line source

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

// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
// @date@	2005-03-27
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3363

module dstress.run.bug_cg87_2393_B;

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

void bar(){
	return foo();
}

int main(){
	x = 2 + 0i;
	bar();
	if(-2 != x){
		assert(0);
	}
	return 0;
}