summaryrefslogtreecommitdiffstats
path: root/lldb/test/Shell/Settings/Inputs/main.cpp
blob: 98bbcd3eda0708fd6e5f91ac821f062078edee0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class MyClass {
public:
  MyClass() {}
  void foo();
};

void MyClass::foo() {
  return; // Set break point at this line.
}

int main() {
  MyClass mc;
  mc.foo();
  return 0;
}
OpenPOWER on IntegriCloud