view test/bug51.d @ 200:e937752e4541 trunk

[svn r216] don't crash on foreach over zero-length static array
author ChristianK
date Mon, 12 May 2008 22:27:05 +0200
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][]);
}