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

Vladimir Panteleev <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[REG2.068.0] Segmentation   |[REG2.068.0] Segmentation
                   |fault with self-referencing |fault with self-referencing
                   |struct                      |struct / inout / alias this

--- Comment #1 from Vladimir Panteleev <[email protected]> ---
Reduced:

//////// test.d ////////
struct NullableRef(T)
{
    inout(T) get() inout
    {
        assert(false);
    }

    alias get this;
}

struct Node
{
    NullableRef!Node n;
}
////////////////////////

--

Reply via email to