https://issues.dlang.org/show_bug.cgi?id=17482
Jonathan M Davis <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |m --- Comment #3 from Jonathan M Davis <[email protected]> --- (In reply to David Marquant from comment #2) > Should it also be possible to assign values? > > a = 11; // Isn't compiling as well That did not compile with 2.073.2. So, regardless of what the desired behavior would be, the fact that that does not currently compile is not a regression. Also, a better example of the regression would probably be something like Nullable!Variant a = Variant(12); assert(a != 11); since the original example would actually fail an assertion otherwise - though the compilation error is the same. --
