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

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