view tests/mini/structinit.d @ 741:4ac97ec7c18e

Applied easy part from wilsonk's x86-64 patch in #107
author Christian Kamm <kamm incasoftware de>
date Thu, 30 Oct 2008 11:08:34 +0100
parents 1bb99290e03a
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));
}