view run/s/static_36_B.d @ 1604:cc724d521a34

Add note about possible issues with test case depending on switch scopes.
author Christian Kamm <kamm incasoftware de>
date Sat, 28 Mar 2009 19:17:58 +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.static_36_B;

static z = r;
const real r = 2.0L;

int main(){
	auto x = z;

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

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

	return 0;
}