view test/structinit.d @ 100:5071469303d4 trunk

[svn r104] TONS OF FIXES. Split up declaration, constant initializer gen and definition for globals, structs, classes and functions. Improved ClassInfo support (not complete), not in vtable yet. Fixed a bunch of forward reference problems. Much more. Major commit! :)
author lindquist
date Fri, 16 Nov 2007 08:21:47 +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));
}