view test/bug57.d @ 248:890b4862ec6c trunk

[svn r265] generate debug info for global variables only if they don't have external linkage
author ChristianK
date Tue, 10 Jun 2008 20:01:04 +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();
}