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

11 lines
130 B
C++

class Tinky {
public:
int _meh;
Tinky(int meh) : _meh(meh) {}
};
int main(void) {
Tinky x(12);
return 0; // break here
}