view test/structinit.d @ 120:5ce8ab11e75a trunk

[svn r124] Fixed another D vararg + return in ptr bug. Fixed some nested function calls failed to resolve the context ptr.
author lindquist
date Mon, 26 Nov 2007 07:26:21 +0100
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));
}