xxxxxxxxxx
import std;
struct S
{
int x;
this(int y) { writeln("ctor"); x = y; }
~this() { writeln("dtor"); }
}
void main()
int a = S(100).x;
writeln("ehm");