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

--- Comment #8 from John Colvin <[email protected]> ---
Further reduced:

struct Foo(alias f)
{
    struct Bar
    {
        Bar func()
        {
            return Bar();
        }
    }
}

void main()
{
    Foo!(n => n) a;
}

--

Reply via email to