view test/arrays12.d @ 99:a676a7743642 trunk

[svn r103] Array comparisons are now fully implemented, that is - to the extent that TypeInfo is.
author lindquist
date Thu, 15 Nov 2007 00:24:44 +0100
parents
children
line wrap: on
line source

module arrays12;

void ints()
{
    int[3] a = [1,2,3];
    int[3] b = [2,3,4];
    int[3] c = [2,5,0];
    {assert(a < b);}
    {assert(b > a);}
    {assert(a < c);}
    {assert(c > a);}
    {assert(b < c);}
    {assert(c > b);}
}

void main()
{
    ints();
}