view tests/mini/arrayops2.d @ 838:94ba810ea2b0

Fixed problem with nested function inside static nested function. see mini/compile_nested2.d. fixes #143 .
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 09 Dec 2008 14:57:01 +0100
parents 06576ece1a1b
children
line wrap: on
line source

void main()
{
    int[4] a = [1,2,3,4];
    int[4] b = [5,6,7,8];
    a[] += b[];
    assert(a[0] == 6);
    assert(a[1] == 8);
    assert(a[2] == 10);
    assert(a[3] == 12);
}