Thread overview | ||||||
---|---|---|---|---|---|---|
|
October 07, 2013 [Issue 11187] New: A small transitive const bug on struct copying | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=11187 Summary: A small transitive const bug on struct copying Product: D Version: D2 Platform: All OS/Version: All Status: NEW Keywords: rejects-valid Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: k.hara.pg@gmail.com --- Comment #0 from Kenji Hara <k.hara.pg@gmail.com> 2013-10-06 23:38:55 PDT --- The copy conversion from const S to S should work, because the field S.cx.arr has same qualified type const(int[]). struct X { int[] arr; } struct S { const(X) cx; } void main() { static assert(is(typeof((const S).init.cx.arr) == const(int[]))); static assert(is(typeof(( S).init.cx.arr) == const(int[]))); const S sc; S sm = sc; // fails, but should work static assert(is(const S : S)); // fails, but should work } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
October 07, 2013 [Issue 11187] A small transitive const bug on struct copying | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=11187 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull --- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2013-10-06 23:48:29 PDT --- https://github.com/D-Programming-Language/dmd/pull/2639 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
October 07, 2013 [Issue 11187] A small transitive const bug on struct copying | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=11187 --- Comment #2 from github-bugzilla@puremagic.com 2013-10-07 12:38:11 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/dd2d3060854f68042740b8b447387e55323e6c47 fix Issue 11187 - A small transitive const bug on struct copying https://github.com/D-Programming-Language/dmd/commit/a5041a6a563c2893d707737e5c602f0b4b488180 Merge pull request #2639 from 9rnsr/fix11187 Issue 11187 - A small transitive const bug on struct copying -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
October 08, 2013 [Issue 11187] A small transitive const bug on struct copying | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=11187 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