view tests/mini/nested16.d @ 825:a70ddd449e7d

Commented some logging that could be '''very''' long, cuts -vv output size of a gtkd gl sample down 1.2GB by 3/4. Fixed wrong pointer type for multidimension "deep" slicing.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Thu, 04 Dec 2008 16:11:09 +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);
}