March 27
https://issues.dlang.org/show_bug.cgi?id=24458

          Issue ID: 24458
           Summary: Mac M3 associative array keys on std.net.curl gets
                    overwritten
           Product: D
           Version: D2
          Hardware: Other
                OS: Mac OS X
            Status: NEW
          Severity: normal
          Priority: P1
         Component: phobos
          Assignee: nobody@puremagic.com
          Reporter: msnmancini@hotmail.com

```d
import std;
void main()
{
    auto conn = HTTP();
    conn.url =
"https://github.com/ldc-developers/ldc/releases/download/v1.36.0-beta1/ldc2-1.36.0-beta1-osx-universal.tar.xz";
    conn.onReceive = (ubyte[] data)
    {
        writeln(conn.responseHeaders);
        return data.length;
    };
    conn.perform();
}

```
This issue only happened through Mac M3 until now.

--