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

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|ICE(backend/cod2.d 5114)    |ICE(backend/cod2.d 5114)
                   |Destructor and templated    |
                   |function                    |

--- Comment #2 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