view tests/mini/nested3.d @ 418:94c4e090c1af

clean out obj dir before running mini test.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 28 Jul 2008 07:25:13 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module nested3;

void main()
{
    int i;
    void test()
    {
        i = 3;
    }
    test();
    assert(i == 3);
}