1int main(int argc, char **argv) {
2 int val = 1;
3 int *p = &val;
4
5 typedef int *myp;
6 myp my_p = &val;
7
8 typedef int *&mypr;
9 mypr my_pr = p;
10
11 return 0; // Set a breakpoint here
12}
13

source code of lldb/test/API/commands/frame/var-dil/basics/Indirection/main.cpp