Thread overview | ||||||
---|---|---|---|---|---|---|
|
July 20, 2013 [Issue 10686] New: No [] operator overload for immutable Tuple | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=10686 Summary: No [] operator overload for immutable Tuple Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: rejects-valid Severity: regression Priority: P2 Component: Phobos AssignedTo: nobody@puremagic.com ReportedBy: bearophile_hugs@eml.cc --- Comment #0 from bearophile_hugs@eml.cc 2013-07-20 15:27:45 PDT --- import std.typecons: Tuple; void main() { immutable Tuple!(int) t1; auto r1 = t1[0]; // OK immutable Tuple!(int, "x") t2; auto r2 = t2[0]; // error } DMD 2.064alpha gives: test.d(6): Error: no [] operator overload for type immutable(Tuple!(int, "x")) -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
July 21, 2013 [Issue 10686] No [] operator overload for immutable Tuple | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=10686 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull Platform|x86 |All OS/Version|Windows |All --- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2013-07-21 05:26:06 PDT --- https://github.com/D-Programming-Language/phobos/pull/1428 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
July 25, 2013 [Issue 10686] No [] operator overload for immutable Tuple | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=10686 --- Comment #2 from github-bugzilla@puremagic.com 2013-07-25 01:04:26 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/d61085c3751420b1d41c041199dd05e163120db6 fix Issue 10686 - No [] operator overload for immutable Tuple https://github.com/D-Programming-Language/phobos/commit/ffe080e908b15525edb453102eb7c96b78ed2fe7 Merge pull request #1428 from 9rnsr/fix10686 [REG2.064a] Issue 10686 - No [] operator overload for immutable Tuple MERGED. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
July 25, 2013 [Issue 10686] No [] operator overload for immutable Tuple | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=10686 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation