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

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
                   |                            |rg

--- Comment #1 from [email protected] ---
Digger blames https://github.com/dlang/dmd/pull/4779 when using the following
test case:

void foo(size_t N)(ubyte[N], bool sa)
{
    assert(sa);
}

void foo()(ubyte[], bool sa)
{
    assert(!sa);
}

void main()
{
    ubyte[16] x;
    foo(x, true);
    foo(x[], false);
}

--

Reply via email to