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

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