view test/d.d @ 33:bc641b23a714 trunk

[svn r37] * Initial support for foreach on static arrays. Not 100% complete
author lindquist
date Thu, 04 Oct 2007 22:38:53 +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;
}