https://issues.dlang.org/show_bug.cgi?id=16085

--- Comment #4 from Martin Nowak <[email protected]> ---
This is just an occurrence of wrong code caused by issue 314, b/c selective
imports weren't checked for visibility until recently.

struct Bucketizer
{
    import whatever : reallocate; // <- private
}

struct Segregator(LargeAllocator)
{
    LargeAllocator _large;
    void reallocate()
    {
        _large.reallocate(); // deprecation
    }
}

--

Reply via email to