1// Header for PCH test cxx-traits.cpp
2
3template<typename _Tp>
4struct __is_pod {
5  enum { __value };
6};
7
8template<typename _Tp>
9struct __is_empty {
10  enum { __value };
11};
12
13template<typename T, typename ...Args>
14struct is_trivially_constructible {
15  static const bool value = __is_trivially_constructible(T, Args...);
16};
17