llvm/lldb/test/API/lang/cpp/operator-overload/b.cpp

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

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