[Issue 2500] template struct methods are left unresolved if imported from multiple modules

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2500 Andrei Alexandrescu and...@erdani.com changed: What|Removed |Added Version|D1 D2 |D2 --

[Issue 2500] template struct methods are left unresolved if imported from multiple modules

2015-02-21 Thread via Digitalmars-d-bugs
methods are left unresolved if imported from multiple modules https://github.com/D-Programming-Language/dmd/commit/c4387428c034ae83fa2504379c68ed3ac354d58f Merge pull request #4384 from 9rnsr/fix2644 --

[Issue 2500] template struct methods are left unresolved if imported from multiple modules

2015-02-13 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2500 github-bugzi...@puremagic.com changed: What|Removed |Added Status|REOPENED|RESOLVED

[Issue 2500] template struct methods are left unresolved if imported from multiple modules

2015-02-13 Thread via Digitalmars-d-bugs
struct methods are left unresolved if imported from multiple modules https://github.com/D-Programming-Language/dmd/commit/c4387428c034ae83fa2504379c68ed3ac354d58f Merge pull request #4384 from 9rnsr/fix2644 Issue 2644 2500 10920 - Unresolved template reference --

[Issue 2500] template struct methods are left unresolved if imported from multiple modules

2015-02-05 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2500 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added CC||k.hara...@gmail.com ---

[Issue 2500] template struct methods are left unresolved if imported from multiple modules

2015-02-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2500 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added Keywords||pull Hardware|x86

[Issue 2500] template struct methods are left unresolved if imported from multiple modules

2008-12-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2500 --- Comment #3 from [EMAIL PROTECTED] 2008-12-11 02:17 --- What's happening is A.d thinks that T!(int) is instantiated by B, and B thinks it is instantiated in A. (T!(A) can be T!(int), the A just confuses things.) The workaround is:

[Issue 2500] template struct methods are left unresolved if imported from multiple modules

2008-12-09 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2500 [EMAIL PROTECTED] changed: What|Removed |Added OS/Version|Windows |All --- Comment #2 from

[Issue 2500] template struct methods are left unresolved if imported from multiple modules

2008-12-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2500 --- Comment #1 from [EMAIL PROTECTED] 2008-12-08 23:44 --- Oopps, I forgot to add some importannt information... The compilation command sequence I used is: # dmd a -c // ok # dmd b -c // ok # dmd c -c // ok # dmd a.obj b.obj c.obj