On 1/1/11 7:10 PM, Adam D. Ruppe wrote:
Robert Clipsham wrote:
Don't suppose you've got a test case which will reproduce this?
===
import std.variant;
void main() {
string a, b;
Variant[string] v;
v[a] = b;
}
===
I'm almost certain I've seen something similar in the bugzilla
before, but I can't find it now. I find that thing to be
incredibly hard to search.
My DMD is also a release or two behind, so it might already
be fixed. (I only update dmd when I'm a few days ahead on my
work, just in case I have to deal with a regression or breaking
change. While they haven't bothered me for many months now, I
still lag a bit to avoid the risk of breaking my production build
when the schedule is already packed.)
Yah, I remember it too. Just looked for it, couldn't find it because
searching defaults to unresolved issues. Once you look for resolved ones...
http://d.puremagic.com/issues/show_bug.cgi?id=2451
Andrei