[Issue 24453] [REG2.108] idup fails for inout(T)[] slices

2024-04-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24453 --- Comment #6 from Dlang Bot --- dlang/dmd pull request #16355 "merge stable" was merged into master: - 2c1deeced9df3cd8434d576e6e8733fc9d74f79f by Martin Kinkelin: Fix Bugzilla Issue 24453 - idup fails for inout(T)[] slices https://github.com/d

[Issue 24453] [REG2.108] idup fails for inout(T)[] slices

2024-03-27 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24453 Dlang Bot changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 24453] [REG2.108] idup fails for inout(T)[] slices

2024-03-26 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24453 Dlang Bot changed: What|Removed |Added Keywords||pull --- Comment #4 from Dlang Bot --- @kinke c

[Issue 24453] [REG2.108] idup fails for inout(T)[] slices

2024-03-26 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24453 --- Comment #3 from kinke --- Oh wait, `_d_newarrayUPureNothrow` is just allocating, not initializing. No problem with copy ctors then. --

[Issue 24453] [REG2.108] idup fails for inout(T)[] slices

2024-03-26 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24453 --- Comment #2 from kinke --- Thanks Steven for checking & linking. > The `_d_newarrayUPureNothrow` is building an array of `inout(char)`, which > is wrong at this point. It should always return mutable data, and then > properly cast at the right pl

[Issue 24453] [REG2.108] idup fails for inout(T)[] slices

2024-03-26 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24453 Steven Schveighoffer changed: What|Removed |Added CC||schvei...@gmail.com --- Comment #1 fr