main.cpp 178 Bytes Raw Blame History Permalink 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; }