view tests/mini/d.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/d.d@b706170e24a9
children
line wrap: on
line source

module d;

void main()
{
    int delegate() dg;

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

        int func()
        {
            return 42;
        }
    }

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

    i = f(dg2, 1);
    assert(i == 43);
}

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;
}
*/