summaryrefslogtreecommitdiff
path: root/tests/headers/opaque_in_struct.hpp
blob: 12910e1f779bc43a49c6f32c9fddf6ed41eb9efc (plain)
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq


/** <div rustbindgen opaque> */
typedef struct opaque {
    int waht;
} opaque;

struct container {
    opaque contained;
};