view test/bug22.d @ 68:c4b3f5d2cd9b trunk

[svn r72] Calling a nested function that is not a delegate was not working.
author lindquist
date Sun, 28 Oct 2007 03:14:29 +0100
parents 6fcc08a4d406
children d9d5d59873d8
line wrap: on
line source

module bug22;

void main()
{
    int i;
    delegate {
        i = 42;
    }();
    printf("%d\n", i);
    assert(i == 42);
}