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