On 7/16/20 2:32 AM, Andrei Alexandrescu wrote:
> I got good news for you then: https://github.com/dlang/dmd/pull/11236
That is good news, and will help here!
This should suffice:
@property pure @safe nothrow bool reachable() {
pragma(inline, true);
return true;
}
Though I don't know if this is something we should include in Phobos?
-Steve