[Issue 10040] struct-related ICE
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Thu May 9 18:47:27 PDT 2013
http://d.puremagic.com/issues/show_bug.cgi?id=10040
Kenji Hara <k.hara.pg at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |ice, pull, rejects-valid
--- Comment #2 from Kenji Hara <k.hara.pg at gmail.com> 2013-05-09 18:47:24 PDT ---
https://github.com/D-Programming-Language/dmd/pull/2000
---- Reduced test case(test.d):
struct MsgProc1 { mixin MsgMixin; }
struct MsgProc2 { mixin MsgMixin; }
struct MsgHeader {}
template MsgMixin()
{
mixin(mixinMembers!(MsgHeader.init));
}
string mixinMembers(T ...)()
{
struct Op {}
return null;
}
---- Command line:
dmd -o- test.d
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list