view test/nested9.d @ 141:8f43f5c43c95 trunk

[svn r145] fixed some x86 problems
author lindquist
date Wed, 23 Jan 2008 12:58:51 +0100
parents 8096ba7082db
children d9d5d59873d8
line wrap: on
line source

module nested9;

void main()
{
    int i = 42;
    int func()
    {
        return i + 1;
    }
    int j = func();
    printf("j = %d\n", j);
    assert(j == 43);
}