xxxxxxxxxx
import core.stdc.stdio;
void a() nothrow
{
throw new Error("error");
}
void b()
scope(exit)puts("1");
a();
int main() //nothrow
try b();
catch(Error e)puts("2");
//catch(Exception e)puts("3");
return 0;