Files
third_party_rust_bindgen/tests/headers/derive-debug-function-pointer.hpp
T
2017-08-11 00:05:19 +02:00

8 lines
130 B
C++

// bindgen-flags: --impl-debug
class Nice {
typedef void (*Function) (int data);
Function pointer;
int large_array[34];
};