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