1class MyClass {
2public:
3 MyClass() {}
4 void foo();
5};
6
7void MyClass::foo() {
8 return; // Set break point at this line.
9}
10
11int main() {
12 MyClass mc;
13 mc.foo();
14 return 0;
15}
16

source code of lldb/test/Shell/Settings/Inputs/main.cpp