[Issue 13861] compiler segfault with nested struct, cannot access frame

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Tue Dec 16 00:25:39 PST 2014


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

--- Comment #8 from John Colvin <john.loughran.colvin at gmail.com> ---
Further reduced:

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

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

--


More information about the Digitalmars-d-bugs mailing list