view test/bug57.d @ 260:d69d4543c441 trunk

[svn r278] Added test results for [277]
author lindquist
date Fri, 13 Jun 2008 07:50:55 +0200
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();
}