1typedef struct t *tp;
2typedef tp (*get_tp)();
3
4struct s {
5 get_tp get_tp_p;
6};
7
8struct t {
9 struct s *s;
10};
11
12struct t t;
13

source code of lldb/test/API/types/recursive_type_1.cpp