xxxxxxxxxx
void bar();
struct S { int a; ~this() {} }
void foo()
{
S s;
try
bar();
s.a = 2;
}
finally { s.a++; }