1#include <stdio.h>
2
3int foo () { return 10; }
4
5int main ()
6{
7 int (*fptr)() = foo;
8 printf (format: "%p\n", fptr); // break here
9 return fptr();
10}
11

source code of lldb/test/API/macosx/ptrauth-address-expressions/main.c