view test/d.d @ 32:a86fe7496b58 trunk

[svn r36] * Fixed a bug where passing a regular argument to a ref argument did not allocate storage
author lindquist
date Thu, 04 Oct 2007 18:24:05 +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;
}