[Issue 12201] Crash on forward reference import within mixed in template

2015-06-17 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12201

--- Comment #6 from github-bugzi...@puremagic.com ---
Commit pushed to stable at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/e1db093d7373076379c65702c9218ed950c0ecca
Move issue 12201 test case to compilable/testfwdref.d

--


[Issue 12201] Crash on forward reference import within mixed in template

2015-03-29 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12201

--- Comment #5 from github-bugzi...@puremagic.com ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/e1db093d7373076379c65702c9218ed950c0ecca
Move issue 12201 test case to compilable/testfwdref.d

--


[Issue 12201] Crash on forward reference import within mixed in template

2014-02-22 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12201



--- Comment #4 from github-bugzi...@puremagic.com 2014-02-22 08:33:15 PST ---
Commit pushed to 2.065 at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/8aed085825dbf3dbd7ae90b848fa6eb2458bd9a0
Merge pull request #3286 from 9rnsr/fix12201

Issue 12201 - Crash on forward reference import within mixed in template

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 12201] Crash on forward reference import within mixed in template

2014-02-19 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12201


Kenji Hara  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED


-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 12201] Crash on forward reference import within mixed in template

2014-02-19 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12201



--- Comment #3 from github-bugzi...@puremagic.com 2014-02-19 16:20:52 PST ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/b536fd67871716a3ad6dd03792be91a6c1e95194
fix Issue 12201 - Crash on forward reference import within mixed in template

https://github.com/D-Programming-Language/dmd/commit/544577d3a815185fa087db30cfa666d4c737da0d
Merge pull request #3286 from 9rnsr/fix12201

Issue 12201 - Crash on forward reference import within mixed in template

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 12201] Crash on forward reference import within mixed in template

2014-02-19 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12201


Kenji Hara  changed:

   What|Removed |Added

   Keywords||pull
   Severity|normal  |major


--- Comment #2 from Kenji Hara  2014-02-19 02:28:26 PST ---
https://github.com/D-Programming-Language/dmd/pull/3286

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 12201] Crash on forward reference import within mixed in template

2014-02-19 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12201


Kenji Hara  changed:

   What|Removed |Added

Summary|Crash on bad import within  |Crash on forward reference
   |mixed in template   |import within mixed in
   ||template


--- Comment #1 from Kenji Hara  2014-02-19 02:26:54 PST ---
Even if the import is valid, it will crash.

template T()
{
core.stdc.stdio.FILE* fp;
}

struct S
{
mixin T;
import core.stdc.stdio;
}

So this is a forward reference issue.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---