summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/union_template_1_0.hpp
blob: 18e3d74a37f5afecef141ef331503da8586607f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// bindgen-flags: --rust-target 1.0 --with-derive-hash --with-derive-partialeq --with-derive-eq

template<typename T>
struct NastyStruct {
  bool mIsSome;
  union {
    void* mFoo;
    unsigned long mDummy;
  } mStorage;

  union {
    short wat;
    int* wut;
  };
};

template<typename T>
union Whatever {
  void* mTPtr;
  int mInt;
};