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

--- Comment #1 from [email protected] ---
Please ignore my comment #0. It wasn't reduced well, template is unrelated.

```
struct File
{
    string _name;
    ~this() {}
}

string name;

void test()
{
    File(name);
    File(name);
}

void main()
{
    test();
}
```

--

Reply via email to