https://issues.dlang.org/show_bug.cgi?id=15761

          Issue ID: 15761
           Summary: Windows wide character console output broken with MS
                    runtime
           Product: D
           Version: D2
          Hardware: x86_64
                OS: Windows
            Status: NEW
          Severity: normal
          Priority: P1
         Component: phobos
          Assignee: [email protected]
          Reporter: [email protected]

import std.stdio, core.sys.windows.windows;

void main()
{
    SetConsoleOutputCP(65001);

    writeln("1 ááá");
    writeln("2 ááá"w); // broken with -m32mscoff and -m64
    writeln("3 ááá"d); // broken with -m32mscoff and -m64
}

--

Reply via email to