https://issues.dlang.org/show_bug.cgi?id=13356
John Colvin <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |john.loughran.colvin@gmail. | |com --- Comment #1 from John Colvin <[email protected]> --- Another test case: void writeConfig() { JSONValue v; v["name"] = .z(); } struct JSONValue { import std.variant; alias Payload = Algebraic!(typeof(null)); Payload payload; alias payload this; } --
