[Issue 9110] Escaping reference error from lazy variadic parameters

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Mon May 25 22:05:59 PDT 2015


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

joeyemmons at yahoo.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |joeyemmons at yahoo.com

--- Comment #2 from joeyemmons at yahoo.com ---
Have also hit this...
void main(string[] args)
{
    test(a());
}

bool a()
{
    return true;
}

void test(lazy bool[] c...)
{
}

--


More information about the Digitalmars-d-bugs mailing list