view tests/mini/nested16.d @ 828:03b0c817a1a3

added install target and possibility to pre- and suffix ldc's executable name to cmake scripts
author elrood
date Thu, 04 Dec 2008 22:09:24 +0100
parents a34078905d01
children
line wrap: on
line source

module mini.nested16;

void main()
{
    int idx = 123;
    int func(int* idp)
    {
        void foo()
        {
            void bar(int* idp)
            {
                auto c = new class
                {
                    void mem()
                    {
                        scope(exit) ++*idp;
                    }
                };
                auto dg = () {
                    c.mem();
                };
                dg();
            }
            bar(idp);
            ++*idp;
        }
        foo();
        return ++*idp;
    }
    assert(func(&idx) == 126);
}