[Issue 19107] -de produces compilation error, -dw does not

d-bugmail at puremagic.com d-bugmail at puremagic.com
Wed Jul 25 18:07:35 UTC 2018


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

--- Comment #1 from Mike Franklin <slavo5150 at yahoo.com> ---
Further reduced:

--- sing.d
module sing;

alias I(alias A) = A;


--- git.d
import sing : I;


--- manager.d
module manager;

import std.algorithm;
import git;

class DManager
{
    void getCacheState(string[string] history)
    {
        string[] componentNames;

        foreach (submoduleCommits; history)
        {
            componentNames.all!(componentName => componentName.I!(component =>
component));
        }
    }
}

--


More information about the Digitalmars-d-bugs mailing list