diff tests/mini/complex5.d @ 599:4435f57956e7

Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 15 Sep 2008 02:04:26 +0200
parents 23538d0f0d5b
children
line wrap: on
line diff
--- a/tests/mini/complex5.d	Sun Sep 14 22:49:19 2008 +0200
+++ b/tests/mini/complex5.d	Mon Sep 15 02:04:26 2008 +0200
@@ -9,5 +9,5 @@
 void foo(cfloat c)
 {
     assert(c.re > 2.9999  && c.re < 3.0001);
-    assert(c.im > 1.9999i && c.im < 2.0001);
+    assert(c.im > 1.9999i && c.im < 2.0001i);
 }