summaryrefslogtreecommitdiff
path: root/tests/headers/derive-debug-function-pointer.hpp
blob: a370dee813e9986ff82286d92323cbb2dc78dbf1 (plain)
1
2
3
4
5
6
7
// bindgen-flags: --impl-debug

class Nice {
  typedef void (*Function) (int data);
  Function pointer;
  int large_array[34];
};