view test/arrays3.d @ 330:5bea8a1ef905 trunk

[svn r351] Remove unused runtime file for DMD-style exception handling. Improved comments on exception handling runtime.
author ChristianK
date Fri, 11 Jul 2008 20:23:42 +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);}
}