1#include "symlink1/foo.h"
2#include "symlink2/bar.h"
3#include "symlink2/qux.h"
4
5int 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

source code of lldb/test/API/functionalities/breakpoint/breakpoint_with_realpath_and_source_map/main.c