1struct Foo {
2 int a;
3 int b;
4};
5
6struct Foo *GetAFoo() {
7 return 0;
8}
9
10int main() {
11 return GetAFoo()->b;
12}
13

source code of lldb/test/API/commands/frame/diagnose/dereference-function-return/main.c