Thread overview
std.file.write versus std.stdio.write
Nov 28, 2012
dsmith
possible correction -- Re: std.file.write versus std.stdio.write
Nov 28, 2012
dsmith
Nov 28, 2012
Jonathan M Davis
November 28, 2012
import std.stdio;   // no std.file is imported, yet the following error:

Error: std.file.write at /usr/include/dmd/phobos/std/file.d(419) conflicts with std.stdio.write!(string,string).write at /usr/include/dmd/phobos/std/stdio.d(1544)
November 28, 2012
On Wednesday, 28 November 2012 at 15:11:01 UTC, dsmith wrote:
> import std.stdio;   // no std.file is imported, yet the following error:
>
> Error: std.file.write at /usr/include/dmd/phobos/std/file.d(419) conflicts with std.stdio.write!(string,string).write at /usr/include/dmd/phobos/std/stdio.d(1544)

A library imported has, in turn, import std.file

November 28, 2012
On Wednesday, November 28, 2012 16:11:01 dsmith wrote:
> import std.stdio;   // no std.file is imported, yet the following error:
> 
> Error: std.file.write at /usr/include/dmd/phobos/std/file.d(419)
> conflicts with std.stdio.write!(string,string).write at
> /usr/include/dmd/phobos/std/stdio.d(1544)

If you have questions, post them in D.Learn. If you have a bug report, report it at http://d.puremagic.com/issues

Please, do not post to this list. It's only intended for messages from bugzilla. Posting from anyone else really shouldn't even be enabled.

- Jonathan M Davis