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

--- Comment #7 from Vlad Levenfeld <[email protected]> ---
Ok, looks like I had a bad directory structure. I got dustmite to work
following your suggestion.

Here is a reduced case that segfaults:

struct Foo (alias f) 
{
        auto opIndex ()
        {
            return Bar ();
        }

        struct Bar
        {
            Bar opIndex ()
            {
                return Bar ();
            }
            Bar opIndex (size_t)
            {    
                return Bar ();
            }
        }
}

void main () {
    Foo!(n => n) A; // SEGFAULT
}

--

Reply via email to