view tests/mini/multiarr1.d @ 797:340acf1535d0

Removed KDevelop3 project files, CMake can generate them just fine! Fixed function literals in static initializers. Changed alignment of delegates from 2*PTRSIZE to just PTRSIZE. Changed errors to go to stderr instead of stdout. Fairly major rewriting of struct/union/class handling, STILL A BIT BUGGY !!!
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sat, 29 Nov 2008 21:25:43 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module multiarr1;

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