view test/arrays3.d @ 338:0c90d816394f trunk

[svn r359] Try to fix DtoArrayInit. Unfinished, breaks for arrays of primitive types.
author ChristianK
date Sat, 12 Jul 2008 23:56:56 +0200
parents 4648206ca213
children
line wrap: on
line source

module arrays3;

void main()
{
    int[] arr;
    {arr = new int[25];}
    {assert(arr.length == 25);}
    {arr.length = arr.length + 5;}
    {assert(arr.length == 30);}
}