Thread overview | ||||||
---|---|---|---|---|---|---|
|
June 14, 2013 [Issue 10354] New: DIP37: ICE with using indirectly imported template through package.d | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=10354 Summary: DIP37: ICE with using indirectly imported template through package.d Product: D Version: D2 Platform: All OS/Version: All Status: NEW Keywords: ice Severity: major Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: k.hara.pg@gmail.com --- Comment #0 from Kenji Hara <k.hara.pg@gmail.com> 2013-06-13 20:53:34 PDT --- 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 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
June 14, 2013 [Issue 10354] DIP37: ICE with using indirectly imported template through package.d | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=10354 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull --- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2013-06-13 21:00:44 PDT --- https://github.com/D-Programming-Language/dmd/pull/2177 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
June 15, 2013 [Issue 10354] DIP37: ICE with using indirectly imported template through package.d | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=10354 --- Comment #2 from github-bugzilla@puremagic.com 2013-06-14 21:03:20 PDT --- 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 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
June 15, 2013 [Issue 10354] DIP37: ICE with using indirectly imported template through package.d | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=10354 yebblies <yebblies@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |yebblies@gmail.com Resolution| |FIXED -- 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