view run/a/auto_17_B.d @ 1611:9f94be6a5ace

Fix typo in last commit.
author Christian Kamm <kamm incasoftware de>
date Sun, 10 May 2009 10:56:43 +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.a.auto_17_B;

auto 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;
}