← Back to index
|
Original Bugzilla link
Bug 10354 – DIP37: ICE with using indirectly imported template through package.d
Status
RESOLVED
Resolution
FIXED
Severity
major
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2013-06-13T20:53:00Z
Last change time
2013-06-14T21:04:12Z
Keywords
ice, pull
Assigned to
nobody
Creator
k.hara.pg
Comments
Comment #0
by k.hara.pg — 2013-06-13T20:53:34Z
Sources: ------- module test; // test.d import pkg.mfoo; void main() { import pkg; foo!string(); bar!string(); } module pkg; // pkg/package.d public import pkg.mfoo; public import pkg.mbar; module pkg.mfoo; // pkg/mfoo.d void foo(T)() {} module pkg.mbar; // pkg/mbar.d void bar(T)() {} Command Line: ------- $ dmd -o- test.d
Comment #1
by k.hara.pg — 2013-06-13T21:00:44Z
https://github.com/D-Programming-Language/dmd/pull/2177
Comment #2
by github-bugzilla — 2013-06-14T21:03:20Z
Commits pushed to master at
https://github.com/D-Programming-Language/dmd
https://github.com/D-Programming-Language/dmd/commit/eea99d6fae537502440cee4dde09c35e7284407c
fix Issue 10354 - DIP37: ICE with using indirectly imported template through package.d
https://github.com/D-Programming-Language/dmd/commit/0c2086d1576408e70e60f1a3177ce89c31d1a0bf
Merge pull request #2177 from 9rnsr/fix10354 Issue 10354 - DIP37: ICE with using indirectly imported template through package.d