view tests/mini/marray3.d @ 1134:152bd2c804d0

Update comments now that LLVM PR3861 has been fixed. However, since conditionally removing the workaround makes the ABI dependent on LLVM version, I reconsidered that. (The same revision of LDC compiling for the same target should probably produce code that follows the same ABI, right?)
author Frits van Bommel <fvbommel wxs.nl>
date Tue, 24 Mar 2009 02:46:57 +0100
parents cc40db549aea
children
line wrap: on
line source

module tangotests.marray3;

void main()
{
    int[][][] ma = new int[][][](2,4,3);
    assert(ma.length == 2);
    assert(ma[0].length == 4);
    assert(ma[0][0].length == 3);
    assert(ma[0][1].length == 3);
    assert(ma[0][2].length == 3);
    assert(ma[0][3].length == 3);
    assert(ma[1].length == 4);
    assert(ma[1][0].length == 3);
    assert(ma[1][1].length == 3);
    assert(ma[1][2].length == 3);
    assert(ma[1][3].length == 3);
    ma[0][3][0] = 32;
    ma[1][2][1] = 123;
    ma[0][0][2] = 55;
    assert(ma[0][3][0] == 32);
    assert(ma[1][2][1] == 123);
    assert(ma[0][0][2] == 55);
}