https://issues.dlang.org/show_bug.cgi?id=13284
Kenji Hara <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull Hardware|x86_64 |All OS|Linux |All --- Comment #4 from Kenji Hara <[email protected]> --- Reduced test case: import std.variant; void main() { auto a = new shared A(); Variant v; v = a; assert(v.get!(shared A) is a); // --> succeeds with 2.065, but fails with 2.066 } The regression was introduced by: https://github.com/D-Programming-Language/phobos/pull/1869 Phobos fix: https://github.com/D-Programming-Language/phobos/pull/2418 --
