view run/c/const_36_I.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 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_I;

class T(float r){
	const z = r;
}

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

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

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

	return 0;
}