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

--- Comment #1 from Iain Buclaw <[email protected]> ---
This is a fail_compilation reduction.
---
auto ice23097(I)(I)
{
    ICE;
}

struct Cpctor23097
{
    this(ref typeof(this) )
    {
    }
}

struct S23097
{
    Cpctor23097 cpctor;
}

auto fail23097(S23097 s)
{   
    s.ice23097;
}
---

--

Reply via email to