view run/const_22_B.d @ 1608:a261c96f7d64

Remove nocompile/m/mixin_25_B, see #5.
author Christian Kamm <kamm incasoftware de>
date Sat, 25 Apr 2009 09:16:37 +0200
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	zwang <nehzgnaw@gmail.com>
// @date@	2005-05-05
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3900

module dstress.run.const_22_B;

int main(){
	real d = -3.0L;
	int i = cast(int)d;
	assert(-3 == i);
	return 0;
}