http://d.puremagic.com/issues/show_bug.cgi?id=6157
Andrej Mitrovic <andrej.mitrov...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major --- Comment #3 from Andrej Mitrovic <andrej.mitrov...@gmail.com> 2012-10-06 14:45:55 PDT --- Whoa, this has now turned from CT failure to outputting garbage. I'm raising importance of this: import std.stdio; import std.conv; void main() { char* cstr = "bla".dup.ptr; wchar* wstr = "bla"w.dup.ptr; dchar* dstr = "bla"d.dup.ptr; writeln( to!string(cstr) ); bla writeln( to!string(wstr) ); // 972F90 writeln( to!string(dstr) ); // 972F80 } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------