view test/nested1.d @ 330:5bea8a1ef905 trunk

[svn r351] Remove unused runtime file for DMD-style exception handling. Improved comments on exception handling runtime.
author ChristianK
date Fri, 11 Jul 2008 20:23:42 +0200
parents f918f3e2e99e
children
line wrap: on
line source

module nested1;

void func(int i)
{
    (){
        assert(i == 3);
    }();
}

void main()
{
    func(3);
}