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