http://d.puremagic.com/issues/show_bug.cgi?id=10040
Kenji Hara <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice, pull, rejects-valid --- Comment #2 from Kenji Hara <[email protected]> 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: -------
