| 1 | #include "symlink1/foo.h" |
|---|---|
| 2 | #include "symlink2/bar.h" |
| 3 | #include "symlink2/qux.h" |
| 4 | |
| 5 | int main(int argc, char const *argv[]) { |
| 6 | int a = foo(); // 1 |
| 7 | int b = bar(); // 2 |
| 8 | int c = qux(); // 3 |
| 9 | return a + b - c; // Set break point at this line. |
| 10 | } |
| 11 |
