view run/b/bug_cgcod_562_O3.d @ 1089:03b5056496f1

pre DMD-0.163 review
author thomask
date Wed, 19 Jul 2006 21:00:13 +0000
parents 5511f9277078
children b8c0195059d9
line wrap: on
line source

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

// @author@	Tiago Gasiba <tiago.gasiba@gmail.com>
// @date@	2005-11-28
// @uri@	news:dmeulv$2542$1@digitaldaemon.com

module dstress.run.b.bug_cgcod_562_O3;

template test( T : T[] ){
	void test( T[] data ) {
		data[0] /= cast(creal)data.length;
	}
}

alias test!(cfloat[]) bug;

int main(){
	cfloat[2] array;
	array[0] = 2.0f + 0.0fi;

	bug(array);
	array[0] -= 1.0;
	if(array[0].re < 0.0){
		array[0] *= -1;
	}

	if(array[0].re > float.epsilon * 4.0){
		assert(0);
	}
	if(array[0].im > float.epsilon * 4.0){
		assert(0);
	}

	return 0;
}