view test/arrays4.d @ 36:c0967c4b2a74 trunk

[svn r40] Cleaned up some of the array routines to use gep/load/store instead of memcpy/memset. Resizing arrays did not allocate enough memory for types bigger than 1 byte.
author lindquist
date Tue, 09 Oct 2007 07:51:13 +0200
parents
children 77cdca8c210f
line wrap: on
line source

module arrays4;

void main()
{
    auto arr = new int[4];
    {auto arrcat = arr ~ arr;}
}