view test/structinit.d @ 67:f918f3e2e99e trunk

[svn r71] Fixed accessing parent function arguments from inside nested delegates. Some cleanups in VarExp::toElem.
author lindquist
date Sun, 28 Oct 2007 02:46:06 +0200
parents 27b2f40bdb58
children
line wrap: on
line source

module structinit;

import structinit2;

struct S
{
    uint ui;
    float f;
    long l;
    real r;
}

S adef;

S a = { 1, 2.0f };
S b = { f:2.0f, l:42 };

Imp imp;

void main()
{
    //assert(a == S.init);
    //assert(b == S(0,3.14f,0,real.init));
}