October 02, 2013 [Issue 11158] New: __MODULE__ as default template parameter doesn't use the instantiating module | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=11158 Summary: __MODULE__ as default template parameter doesn't use the instantiating module Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: code@dawg.eu --- Comment #0 from Martin Nowak <code@dawg.eu> 2013-10-02 11:09:36 PDT --- cat > buga.d << CODE struct Uniq(string name, string mod=__MODULE__) { pragma(msg, name, mod); string toString() { return mod~"."~name; } } CODE cat > bug.d << CODE import buga; alias UniqFoo = Uniq!("foo"); CODE dmd -c bug; ---- As with __FILE__ or __LINE__ they should be used from the instantiating module. This allows to generically implement somewhat unique types and is useful for printing additional information. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
October 03, 2013 [Issue 11158] __MODULE__ as default template parameter doesn't use the instantiating module | ||||
---|---|---|---|---|
| ||||
Posted in reply to Martin Nowak | http://d.puremagic.com/issues/show_bug.cgi?id=11158 Andrej Mitrovic <andrej.mitrovich@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |andrej.mitrovich@gmail.com Resolution| |DUPLICATE --- Comment #1 from Andrej Mitrovic <andrej.mitrovich@gmail.com> 2013-10-02 19:07:11 PDT --- See https://github.com/D-Programming-Language/dmd/pull/2617 *** This issue has been marked as a duplicate of issue 4018 *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation