view test/arrays3.d @ 39:fd5e8bbfcb25 trunk

[svn r43] Fixed the rebuild profile to be able to build sdldemo1.
author lindquist
date Wed, 10 Oct 2007 06:21:31 +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);}
}