On Tuesday, 18 July 2017 at 11:47:37 UTC, Petar Kirov [ZombineDev] wrote:
I think Atila was talking about this one:
struct A
{
        ~this() {}
}

void main()
{
        auto a = A();
        shared b = A();
}

This is strange. There's nothing that suggests that struct A and its destructor is thread-safe, yet compiler assumes it is.

Reply via email to