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

Dennis <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|compiler segfault on single |compiler segfault on
                   |default constructor         |default argument with slice
                   |argument                    |operator []

--- Comment #2 from Dennis <[email protected]> ---
It doesn't even require variadic arguments, it's just about the empty slice:

```
void f(string file = ""[])
{

}

void g()
{
    f();
}
```

--

Reply via email to