https://issues.dlang.org/show_bug.cgi?id=22588
--- Comment #1 from naydef <[email protected]> --- Thanks to Herringway, managed to reduce the issue to appender: ``` import std.math; import std.array; import std.stdio; void main() @safe { auto x = appender!(float[2][])(); x ~= staticArray([0.0f, 0.0f]); writefln("Data: %s", x.data); assert(isClose(x.data[0][1], 0.0)); } ``` --
