view tests/mini/tuple1.d @ 712:8c0d3ec8dbbb

Fix -of with multiple input files.
author Christian Kamm <kamm incasoftware de>
date Tue, 21 Oct 2008 18:15:34 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module tuple1;

template Tuple(T...) {
    alias T Tuple;
}

struct S
{
    int i;
    long l;
}

void main()
{
    S s = S(Tuple!(1,2L));
    assert(s.i == 1);
    assert(s.l == 2);
}