view tests/mini/complex5.d @ 838:94ba810ea2b0

Fixed problem with nested function inside static nested function. see mini/compile_nested2.d. fixes #143 .
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 09 Dec 2008 14:57:01 +0100
parents 4435f57956e7
children
line wrap: on
line source

module complex5;

void main()
{
    cfloat c = 3+2i;
    foo(c);
}

void foo(cfloat c)
{
    assert(c.re > 2.9999  && c.re < 3.0001);
    assert(c.im > 1.9999i && c.im < 2.0001i);
}