summaryrefslogtreecommitdiff
path: root/tests/headers/forward_declared_struct.h
blob: 2a69450c1835628dd742e5ec033477f6b2b2498a (plain)
1
2
3
4
5
6
7
8
9
10
11
struct a;

struct a {
    int b;
};

struct c {
    int d;
};

struct c;