view run/c/const_36_F.d @ 1600:6d193e241564

Allow for tango math in creal tests.
author Christian Kamm <kamm incasoftware de>
date Sun, 04 Jan 2009 22:25:02 +0100
parents ab71ca67c717
children
line wrap: on
line source

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

// @author@	Dave <Dave_member@pathlink.com>
// @date@	2006-03-18
// @uri@	news:dvgq34$22hv$1@digitaldaemon.com

module dstress.run.c.const_36_F;

struct T(real r){
	const z = r;
}

int main(){
	auto x = T!(2).z;

	static assert(is(x == real));

	if(x != 2.0L){
		assert(0);
	}

	return 0;
}