view tests/mini/tuplestruct.d @ 1135:8ebbad15fc99

Remove struct padding which was making this test fail on 64-bit systems.
author Frits van Bommel <fvbommel wxs.nl>
date Tue, 24 Mar 2009 03:14:22 +0100
parents 76e72fdef04d
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);
}