digitalmars.D.learn - hasAliasing with nested static array bug ?
- SrMordred (1/1) Sep 05 2018 https://run.dlang.io/is/TOTsL4
- Bauss (4/5) Sep 05 2018 I'm not sure I'd consider that a bug, because I do not expect a
- Simen =?UTF-8?B?S2rDpnLDpXM=?= (11/12) Sep 06 2018 Yup, that's a bug. Reduced example:
- SrMordred (2/14) Sep 06 2018 Nice, thanks :)
On Wednesday, 5 September 2018 at 22:35:16 UTC, SrMordred wrote:https://run.dlang.io/is/TOTsL4I'm not sure I'd consider that a bug, because I do not expect a static array with 1 element to be equal to a member declaration even if it's in a strict.
Sep 05 2018
On Wednesday, 5 September 2018 at 22:35:16 UTC, SrMordred wrote:https://run.dlang.io/is/TOTsL4Yup, that's a bug. Reduced example: struct S { int*[1] arr; } import std.traits : hasAliasing; static assert(hasAliasing!S); Issue filed: https://issues.dlang.org/show_bug.cgi?id=19228 Pull request: https://github.com/dlang/phobos/pull/6694 -- Simen
Sep 06 2018
On Thursday, 6 September 2018 at 07:37:11 UTC, Simen Kjærås wrote:On Wednesday, 5 September 2018 at 22:35:16 UTC, SrMordred wrote:Nice, thanks :)https://run.dlang.io/is/TOTsL4Yup, that's a bug. Reduced example: struct S { int*[1] arr; } import std.traits : hasAliasing; static assert(hasAliasing!S); Issue filed: https://issues.dlang.org/show_bug.cgi?id=19228 Pull request: https://github.com/dlang/phobos/pull/6694 -- Simen
Sep 06 2018