view tests/mini/arrays16.d @ 983:6e68054cfc20

Fix out-ouf-source build for runtime as well. To build out-of-source, follow these steps: # [[Insert LLVM build instructions here]] mkdir my_build_dir cd my_build_dir svn co http://svn.dsource.org/projects/tango/trunk tango ccmake <PATH_TO_SOURCE> # (Regular ccmake stuff, press 'c' a few times followed by 'g') make make runtime # add `PWD`/bin to PATH closes #213
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 19 Feb 2009 11:01:34 +0100
parents 23538d0f0d5b
children
line wrap: on
line source

module mini.arrays16;

void main()
{
    intarrays!(byte)();
    intarrays!(ubyte)();
    intarrays!(short)();
    intarrays!(ushort)();
    intarrays!(int)();
    intarrays!(uint)();
    intarrays!(long)();
    intarrays!(ulong)();
}

void intarrays(T)()
{
    T[] ia = [cast(T)1,2,3,4];
    T[] ib = [cast(T)1,2,3,4];
    T[] ic = [cast(T)1,2,3];
    T[] id = [cast(T)1,2,3,4,5];

    assert(ia == ia);
    assert(ia == ib);
    assert(ia != ic);
    assert(ia != id);
    assert(ia > ic);
    assert(ia !< ic);
    assert(ia < id);
    assert(ia !> id);
}