Should it also be possible to assign values?
a = 11; // Isn't compiling as well
Comment #3 by issues.dlang — 2017-07-04T02:24:39Z
(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.