view test/bug27.d @ 189:3aed08fb64f4 trunk

[svn r205] moved some local static variables used for memset and memcpy intrinsics to IrState
author ChristianK
date Sat, 10 May 2008 19:00:11 +0200
parents 0c77619e803b
children
line wrap: on
line source

module bug27;

int func(int a, int b)
{
    if (a == b)
        return 0;
    else if (a < b)
        return -1;
    else
        return 1;
}

void main()
{
    int i = func(3,4);
    assert(i == -1);
}