summaryrefslogtreecommitdiff
path: root/tests/headers/union_fields.hpp
blob: 7bb2a3ce3bab646b402171988e41e0c195f0bc4f (plain)
1
2
3
4
5
6
7
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
//
typedef union {
  int mInt;
  float mFloat;
  void* mPointer;
} nsStyleUnion;