aboutsummaryrefslogblamecommitdiff
path: root/packages/Python/lldbsuite/test/types/recursive_type_1.cpp
blob: 81d923ffd94597f48141301b3b306f25dedb6257 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                       
typedef struct t *tp;
typedef tp (*get_tp)();

struct s {
    get_tp get_tp_p;
};

struct t {
    struct s *s;
};

struct t t;