view test/arrays5.d @ 52:0c77619e803b trunk

[svn r56] Initial support for TypeInfo. Enums not work. Several other bugfixes.
author lindquist
date Tue, 23 Oct 2007 05:55:12 +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);
}