1#include "foo.h"
2
3struct bar
4{
5 int a;
6 int b;
7};
8
9int
10main (int argc, char const *argv[])
11{
12 struct bar b= { 1, 2 };
13
14 foo (bar_ptr: &b);
15
16 return 0;
17}
18

source code of lldb/test/API/lang/c/forward/main.c