http://d.puremagic.com/issues/show_bug.cgi?id=3845
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |WORKSFORME --- Comment #2 from [email protected] 2012-02-14 05:52:16 PST --- cat > mod1.d << CODE module mod1; import std.string: join; import std.string: join; CODE cat > mod2.d << CODE module mod2; import std.string: join; CODE cat > test1.d << CODE module test1; import mod1, mod2; void main() { join(["a"], ""); } CODE dmd -c test1.d ------- mod1.d(2): Error: alias mod1.join conflicts with alias mod1.join at mod1.d(3) ^--- mod1 It's complaining about: import std.string: join; import std.string: join; -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
