view tests/mini/arrays3.d @ 1034:12b423e17860

Adjust mini tests to use D_InlineAsm
author Christian Kamm <kamm incasoftware de>
date Tue, 03 Mar 2009 18:26:39 +0100
parents 1bb99290e03a
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);}
}