view test/bug3.d @ 32:a86fe7496b58 trunk

[svn r36] * Fixed a bug where passing a regular argument to a ref argument did not allocate storage
author lindquist
date Thu, 04 Oct 2007 18:24:05 +0200
parents 253a5fc4033a
children 8b0e809563df
line wrap: on
line source

module bug3;

struct S
{
    int[] arr;
    char[5] ch;
}

class C
{
    int[] arr;
    char[4] crs;
}

void main()
{
    S s;
    s.arr = new int[5];
    s.arr[1] = 32;
    assert(s.arr[0] == 0);
    assert(s.arr[1] == 32);
}