1class Tinky {
2public:
3 int _meh;
4 Tinky(int meh) : _meh(meh) {}
5};
6
7int main(void) {
8 Tinky x(12);
9 return 0; // break here
10}
11

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of lldb/test/API/lang/cpp/operator-overload/b.cpp