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