view test/arrays5.d @ 58:2c3cd3596187 trunk

[svn r62] Added support for TypeInfo _Array, _Function, _Pointer, _Delegate, _Enum Added initial support for CatExp aka 'a ~ b' Fixed global constant static arrays initialized with string literals Fixed casting any dynamic array to void* Fixed new expression with temporary storage Fixed alias declarations in function scope Fixed relational comparisons of pointers
author lindquist
date Thu, 25 Oct 2007 09:02:55 +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);
}