view tests/mini/structinit5.d @ 1198:f48500f9350c

Ported script to Tango
author larsivi@larsivi-gutsy
date Tue, 07 Apr 2009 18:37:19 +0200
parents 545f54041d91
children
line wrap: on
line source

struct Vertex {
    uint[1] c;
}

void main() {
    uint[1] c = 0xffffffff;

    auto v = Vertex(c);

    assert(v.c[0] == 0xffffffff);  // fails in LDC
}