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

--- Comment #3 from Steven Schveighoffer <schvei...@yahoo.com> ---
Hm... any program has this problem.

Example:

import std.stdio;

void main()
{
    foreach(mi; ModuleInfo)
    {
        writeln("In module ", mi.name, " we import:");
        foreach(imported; mi.importedModules)
            writeln(imported.name);
    }
}

--

Reply via email to