view nocompile/cast_04.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 3414705c41ac
children a33ad7189d21
line wrap: on
line source

// @author@	Nick <Nick_member@pathlink.com>
// @date@	2004-08-02
// @uri@	news://cejsno$2g2s$1@digitaldaemon.com
// @url@	nttp://digitalmars.com/digitalmars.D.bugs:1238

module dstress.nocompile.cast_04;

int main(){
	creal c = 3 + 5i;
	double d = c;
	return 0;
}