view tests/mini/staticvars.d @ 1437:efa34a3bb8fc

Fix test for mingw
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Sat, 30 May 2009 14:57:48 -0600
parents 1bb99290e03a
children
line wrap: on
line source

module staticvars;

int func()
{
    static int i;
    return i++;
}

void main()
{
    assert(func() == 0);
    assert(func() == 1);
}