view tests/mini/arrayops4.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 06576ece1a1b
children
line wrap: on
line source

void main()
{
    auto a = new float[1024];
    auto b = new float[1024];
    auto c = new float[1024];

    for (auto i=0; i<1024; i++)
    {
        a[i] = i;
        b[i] = i*2;
        c[i] = i*4;
    }

    a[] = b[] + c[] / 2;

    foreach(i,v; a)
    {
        assert(eq(v, b[i] + c[i] / 2));
    }
}

float abs(float x)
{
    return x<0?-x:x;
}
bool eq(float a, float b)
{
    return abs(a-b) <= float.epsilon;
}