xref: /aosp_15_r20/external/clang/test/Modules/Inputs/PR26014/B.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 #ifndef _LIBCPP_TYPE_TRAITS
2 #define _LIBCPP_TYPE_TRAITS
3 
4 template <class _Tp>
5 struct underlying_type
6 {
7     typedef __underlying_type(_Tp) type;
8 };
9 
10 #endif  // _LIBCPP_TYPE_TRAITS
11