summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/struct_containing_forward_declared_struct.h
blob: d38aca2fc71e9283fa7bc94e014029703e40445b (plain)
1
2
3
4
5
6
7
struct a {
    struct b* val_a;
};

struct b {
    int val_b;
};