view tangotests/nested1.d @ 278:30941d8ee320 trunk

[svn r299] forgot to return status in runExecutable
author lindquist
date Fri, 20 Jun 2008 22:12:15 +0200
parents 2e652b8ad1fd
children
line wrap: on
line source

module tangotests.nested1;

void main()
{
    int i = 42;
    assert(i == 42);
    void func()
    {
        assert(i == 42);
    }
    func();
}