summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/issue-1281.h
blob: 4a3aaab0e5c4276851152b3b75da9349bcd7be9a (plain)
1
2
3
4
5
6
7
8
9
10
11
struct foo;

typedef struct bar {
  struct foo {
    int foo;
  } u;
} bar_t;

struct baz {
  struct foo f;
};