[Issue 2451] Cannot add a Variant to associative array

2010-01-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2451 David Simcha dsim...@yahoo.com changed: What|Removed |Added CC||dsim...@yahoo.com ---

[Issue 2451] Cannot add a Variant to associative array

2010-01-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2451 --- Comment #3 from Andrei Alexandrescu and...@metalanguage.com 2010-01-15 13:16:14 PST --- Perfect timing, thanks. I just ran into that but had no time to investigate. The type Tuple!(uint, count, float, distance)[uint] does not work, but the

[Issue 2451] Cannot add a Variant to associative array

2009-10-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2451 Andrei Alexandrescu and...@metalanguage.com changed: What|Removed |Added Status|NEW |ASSIGNED

[Issue 2451] Cannot add a Variant to associative array

2009-02-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2451 --- Comment #1 from and...@metalanguage.com 2009-02-22 09:39 --- (In reply to comment #0) import std.variant; void main() { Variant[string] a; Variant v = 1; a[wut?] = v; }