https://issues.dlang.org/show_bug.cgi?id=19107
--- Comment #1 from Mike Franklin <[email protected]> --- 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)); } } } --
