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