On Friday, 23 February 2018 at 11:57:05 UTC, Martin Nowak wrote:

A newcomer to D could rightfully conclude that comma is a module separator and the following is the correct syntax to import multiple symbols.

    import std.stdio, std.conv : to, std.conv : parse;


What if you have something like
import std.stdio, std.conv : to, parse;
and there is a module at the top-level named parse?

Reply via email to