https://issues.dlang.org/show_bug.cgi?id=16074
--- Comment #2 from Steven Schveighoffer <[email protected]> --- (In reply to Steven Schveighoffer from comment #1) > You can work around by renaming the import: > > import std.concurrency: spawn, con_recv = receive; Alternatively: import con = std.concurrency; ... con.receive( ... ... con.spawn( ... --
