view test/d.d @ 50:6fcc08a4d406 trunk

[svn r54] Added support for nested delegates referencing parent's stack variables. Replaced tester.sh with a version written in D. A few bugfixes.
author lindquist
date Mon, 22 Oct 2007 15:40:56 +0200
parents c53b6e3fe49a
children b706170e24a9
line wrap: on
line source

module d;
/*
void main()
{
    int delegate() dg;
    int i = dg();

    struct S
    {
        int i;
        long l;
        float f;

        int func()
        {
            return 42;
        }
    }

    S s;
    auto dg2 = &s.func;
    i = dg2();

    i = f(dg2, 1);
}

int f(int delegate() dg, int i)
{
    return dg() + i;
}
*/

struct S
{
    int i;
    float f;
    int square()
    {
        return i*i;
    }
}

S s;

void main()
{
    auto dg = &s.square;
}