xref: /llvm-project/lldb/test/API/lang/cpp/operator-overload/b.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 class Tinky {
2 public:
3   int _meh;
Tinky(int meh)4   Tinky(int meh) : _meh(meh) {}
5 };
6 
main(void)7 int main(void) {
8   Tinky x(12);
9   return 0; // break here
10 }
11