summaryrefslogtreecommitdiff
path: root/tests/headers/use-core.h
blob: b34a71e77cfa6a979c2275575c3bf589acc305e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// bindgen-flags: --use-core --raw-line "extern crate core;" --with-derive-hash

struct foo {
  int a, b;
  void* bar;
};

union {
  int bar;
  long baz;
} bazz;

typedef void (*fooFunction)(int bar);