view tests/mini/bug23.d @ 916:5f4a69a53906

Renamed Rebuild profile to match DSSS and Tango convention.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 02 Feb 2009 00:34:22 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug23;
extern(C) int printf(char*, ...);

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