view test/multiarr1.d @ 81:3587401b6eeb trunk

[svn r85] Fixed: if a return statement appeared in the try block of a nested try-finally, only the inner-most finally block would be executed. Changed: Renamed all the LLVM_Dto... helper function to just Dto...
author lindquist
date Thu, 01 Nov 2007 17:27:18 +0100
parents b688ad419f8c
children 61615fa85940
line wrap: on
line source

module multiarr1;

void main()
{
    int[16][16] a;
    a[10][13] = 42;
    assert(a[0][0] == 0);
    assert(a[10][13] == 42);
    {assert(*((cast(int*)a)+10*16+13) == 42);}
}