1
     2
     3
     4
     5
     6
     7
     8
class X {
   public:
      X() : i(0) { }
   private:
      const int i;
};

X x;