# HG changeset patch # User thomask # Date 1097684491 0 # Node ID 257b7166865f9828d48fd500dab42aa872a2e6c2 # Parent 6ca37b0d907e6d62c5ceb25b7544f4a58f0950ae fixed with the help of Burton Radons diff -r 6ca37b0d907e -r 257b7166865f run/float_litaeral_dec_02.d --- a/run/float_litaeral_dec_02.d Wed Oct 13 07:33:32 2004 +0000 +++ b/run/float_litaeral_dec_02.d Wed Oct 13 16:21:31 2004 +0000 @@ -4,6 +4,6 @@ float b = 10000.0; float c = a/b; assert(f == c); - assert(f == a/b); + assert(f == cast(float)a/b); return 0; }