class Tinky {
public:
  int _meh;
  Tinky(int meh) : _meh(meh) {}
};

int main(void) {
  Tinky x(12);
  return 0; // break here
}