xxxxxxxxxx
import std.stdio;
struct S
{
~this() {}
}
void foo(ref S s) @safe
destroy(s);
void main()
S s;
foo(s);