view test/bug57.d @ 128:e5fe8521bbfa trunk

[svn r132] Added some tests. some will fail at the moment.
author lindquist
date Fri, 30 Nov 2007 17:12:08 +0100
parents 61615fa85940
children
line wrap: on
line source

import std.stdio;
class Foo {}
void func3()
{
    Foo[1] test=[new Foo];
    writefln(test);
}
void main() {
    func3();
}