1 // bindgen-flags: --use-core --raw-line '#![cfg(not(target_os="windows"))] extern crate core;' --with-derive-hash --with-derive-partialeq --with-derive-eq
2 
3 struct foo {
4   int a, b;
5   void* bar;
6 };
7 
8 union {
9   int bar;
10   long baz;
11 } bazz;
12 
13 typedef void (*fooFunction)(int bar);
14