comparison 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
comparison
equal deleted inserted replaced
598:13ff06605226 599:4435f57956e7
7 } 7 }
8 8
9 void foo(cfloat c) 9 void foo(cfloat c)
10 { 10 {
11 assert(c.re > 2.9999 && c.re < 3.0001); 11 assert(c.re > 2.9999 && c.re < 3.0001);
12 assert(c.im > 1.9999i && c.im < 2.0001); 12 assert(c.im > 1.9999i && c.im < 2.0001i);
13 } 13 }