view tests/mini/arrayops3.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[] / 2;
    assert(a[0] == 3);
    assert(a[1] == 5);
    assert(a[2] == 6);
    assert(a[3] == 8);
}