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

--- Comment #2 from Basile-z <[email protected]> ---
reduced w/o phobos

```
extern(C) int puts(const char*);

void main()
{
    auto a = ["c\0"];
    foreach (v; a ~ "a\0" ~ "b\0")
        puts(v.ptr);
}     
```

--

Reply via email to