1#include <cstdio>
2
3void greet() { printf(format: "Hello"); }
4
5int main(void) {
6 int var1 = 1;
7 void (*func_ptr)() = &greet;
8 void (&func_ref)() = greet;
9 return 0; // break here
10}
11

source code of lldb/test/API/tools/lldb-dap/locations/main.cpp