view test/bug51.d @ 129:8096ba7082db trunk

[svn r133] Fixed some problems with inlining not happening :P Fixed problems with certain cases of deeply nested classes/functions.
author lindquist
date Fri, 28 Dec 2007 22:55:24 +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][]);
}