Files
ldc/test/arrays4.d
Tomas Lindquist Olsen 4fdad2c750 [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.
2007-10-09 07:51:13 +02:00

8 lines
91 B
D

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