summaryrefslogtreecommitdiff
path: root/tests/headers/func_ptr_in_struct.h
blob: ef075df76c804fbe284ec46bd56ac110e6681faf (plain)
1
2
3
4
5
6
7
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --rustified-enum ".*"
//
enum baz;

struct Foo {
    enum baz (*bar) (int x, int y);
};