view tests/mini/tuplestruct.d @ 1651:cb960b882ca3 default tip

bindings were moved to dsource.org/projects/bindings/
author Moritz Warning <moritzwarning@web.de>
date Thu, 20 May 2010 20:05:03 +0200
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);
}