1extern "C" int x;2 3namespace {4 5struct Init {6public:7 Init() { x = 1; }8};9 10Init SetX;11 12} // namespace13