view tests/mini/nested3.d @ 911:1d9fe5e2a13c

Fix typo in [909].
author Christian Kamm <kamm incasoftware de>
date Thu, 29 Jan 2009 17:59:25 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module nested3;

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