view test/bug51.d @ 128:e5fe8521bbfa trunk

[svn r132] Added some tests. some will fail at the moment.
author lindquist
date Fri, 30 Nov 2007 17:12:08 +0100
parents fd7ad91fd713
children
line wrap: on
line source

module bug51;
const ubyte[3] arr1 = 1;
const ubyte[3] arr2 = [1];
const ubyte[3] arr3 = [1:1];
void main()
{
    assert(arr1 == [cast(ubyte)1,1,1][]);
    assert(arr2 == [cast(ubyte)1,0,0][]);
    assert(arr3 == [cast(ubyte)0,1,0][]);
}