This code cannot compile! import std.container; void main() { Array!int ary; ary.insertAfter(ary[], 1); // <- NG }
https://github.com/D-Programming-Language/druntime/pull/92
Oops! My bad.
Can't find the specific pull, but this was fixed in 2.060 http://dpaste.dzfl.pl/09dba06c8ff3
Resolve it as WORKSFORME when the pull is missing.
(In reply to comment #4) > Resolve it as WORKSFORME when the pull is missing. I thought WORKSFORME is for when the original bug actually works and the user has just made a mistake or the bug otherwise cannot be reproduced? (do we have guidelines for this?)
(In reply to comment #5) > (In reply to comment #4) > > Resolve it as WORKSFORME when the pull is missing. > > I thought WORKSFORME is for when the original bug actually works and the user > has just made a mistake or the bug otherwise cannot be reproduced? There's INVALID for that. > (do we have guidelines for this?) The (current) problem is that bugs marked as FIXED will end up in the changelog for the upcoming release. There may be a way around this if we change the changelog generator tool to filter through git commits rather than query bugzilla, but it hasn't been done yet.
(In reply to comment #6) > The (current) problem is that bugs marked as FIXED will end up in the changelog > for the upcoming release. There may be a way around this if we change the > changelog generator tool to filter through git commits rather than query > bugzilla, but it hasn't been done yet. Fair enough. Looks like I'll need to go back over some of my resolves :-)
(In reply to comment #5) > (In reply to comment #4) > > Resolve it as WORKSFORME when the pull is missing. > > I thought WORKSFORME is for when the original bug actually works and the user > has just made a mistake or the bug otherwise cannot be reproduced? > > (do we have guidelines for this?) Yes, we do! The "Status" label above links to this: https://d.puremagic.com/issues/page.cgi?id=fields.html#status So basically WORKSFORME means both 'cannot reproduce' and 'can no longer reproduce' and so is valid for a bug where the fix is unknown.