view test/bug22.d @ 60:66a6841bbe43 trunk

[svn r64] ...
author lindquist
date Thu, 25 Oct 2007 09:16:05 +0200
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);
}