summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_anon_struct_pointer.h
blob: d92c801102b05c767d411e7e89db5c8d7062120a (plain)
1
2
3
4
5
6
7
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
struct foo {
    struct {
        int a;
        int b;
    } *bar;
};