https://issues.dlang.org/show_bug.cgi?id=20937
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from [email protected] --- Reduced test case: ``` struct S {int* x;} void main() @safe { import std.algorithm, std.array; auto result = (new immutable(S)[2]).filter!(v => true).array; } ``` --
