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

          Issue ID: 15082
           Summary: Output of process is not captured on Win64
           Product: D
           Version: D2
          Hardware: x86_64
                OS: All
            Status: NEW
          Severity: normal
          Priority: P1
         Component: phobos
          Assignee: [email protected]
          Reporter: [email protected]

import std.stdio, std.process;

void main(string[] args) {
    if(args.length > 1)
        `123`.write;
    else
        assert(execute([ args[0], `dummy` ]).output == `123`);
}


Passes on Win32, fails on Win64.

--

Reply via email to