view test/nested3.d @ 198:17dc52256c58 trunk

[svn r214] test results for [210]
author ChristianK
date Mon, 12 May 2008 20:28:44 +0200
parents c4b3f5d2cd9b
children
line wrap: on
line source

module nested3;

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