http://d.puremagic.com/issues/show_bug.cgi?id=10668
--- Comment #1 from Matt Carter <[email protected]> 2013-07-19 01:58:27 PDT --- The content of the attachment, just in case: module main; import std.stdio; void main(string[] args) { string s = "���"; writeln(s); // Output: ��� char c = s[0]; writeln(c); // Output: ? writeln(s[0]); // Output: ? } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
