https://issues.dlang.org/show_bug.cgi?id=13686
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Component|DMD |Phobos Hardware|x86_64 |All OS|Windows |All Severity|enhancement |normal --- Comment #4 from [email protected] --- Copying my comment from the forum thread: std.stdio.LockingTextReader is to blame: void main() { import std.stdio; auto ltr = LockingTextReader(std.stdio.stdin); write(ltr); } ---- $ echo Тест | rdmd test.d ТеÑÑ LockingTextReader has a dchar front. But it doesn't do any decoding. The dchar front is really a char front. --
