view test/bug25.d @ 124:a939ec89fc72 trunk

[svn r128] function local typedefs were not working
author lindquist
date Wed, 28 Nov 2007 03:34:37 +0100
parents 6fcc08a4d406
children d9d5d59873d8
line wrap: on
line source

module bug25;

void main()
{
    int i = 2;
    delegate {
        i = i*i;
        i += i*i;
    }();
    printf("%d\n", i);
    assert(i == 20);
}