xxxxxxxxxx
import std.stdio;
void main() {
scope(exit) writeln("scope(exit) 1");
throw new Exception("exception");
scope(exit) writeln("scope(exit) 2");
}