view test/bug57.d @ 279:a137ed004205 trunk

[svn r300] Removed some win32 stuff that was causing problems on mingw32.
author lindquist
date Fri, 20 Jun 2008 22:25:07 +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();
}