http://d.puremagic.com/issues/show_bug.cgi?id=625
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED CC| |[email protected] Resolution| |WORKSFORME --- Comment #1 from [email protected] 2012-02-14 04:54:11 PST --- cat > a.d << EOF module a; mixin template foo() { import std.stream; Stream stream; } EOF cat > b.d << EOF module b; static import impa=a; class Klass { mixin impa.foo!(); } EOF cat > c.d << EOF module c; static import a; class Klass { mixin a.foo!(); } EOF dmd -c b.d dmd -c c.d ---------- -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
