On Fri, 8 Feb 2013 18:25:27 -0500is probably intentional?:
Nick Sabalausky <bus_dmdbeta@semitwist.com> wrote:
One of the problems turned out to be the following, which I'm guessing
import std.stdio;
struct Foo
{
string toString()
{
return "hello";
}
}
void main()
{
const f = Foo();
// In 2.061 and up, this outputs "const(Foo)()"
// instead of "hellO". A fixed bug?
writeln(f);
}