view test/arrays5.d @ 67:f918f3e2e99e trunk

[svn r71] Fixed accessing parent function arguments from inside nested delegates. Some cleanups in VarExp::toElem.
author lindquist
date Sun, 28 Oct 2007 02:46:06 +0200
parents 77cdca8c210f
children 61615fa85940
line wrap: on
line source

module arrays5;
//import std.stdio;
void main()
{
    auto arr = new float[5];
    arr[4] = 1f;
    //writefln(arr);
    assert(arr[0] !<>= 0f);
    assert(arr[1] !<>= 0f);
    assert(arr[2] !<>= 0f);
    assert(arr[3] !<>= 0f);
    assert(arr[4] == 1f);
}