brintos

brintos / llvm-project-archived public Read only

0
0
Text · 178 B · 98bbcd3 Raw
16 lines · cpp
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