view tests/mini/tuplestruct.d @ 1638:0de4525a9ed6

Apply workaround for #395 by klickverbot.
author Christian Kamm <kamm incasoftware de>
date Mon, 08 Mar 2010 20:06:08 +0100
parents 8ebbad15fc99
children
line wrap: on
line source

struct V(T...) {
    T v;
}

alias V!(float, int) MyV;

void main()
{
    assert(MyV.sizeof == float.sizeof + int.sizeof);
    auto f = 3.75f;
    auto v = MyV(f, 3);
    assert(v.v[0] == 3.75f);
    assert(v.v[1] == 3);
}