[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / Inputs / PR26014 / A.h
blob49de5ba479af2fa05806ec331c0b63df15417939
1 #ifndef _LIBCPP_TYPE_TRAITS
2 #define _LIBCPP_TYPE_TRAITS
5 template <class _Tp>
6 struct underlying_type
8 typedef __underlying_type(_Tp) type;
9 };
11 #endif // _LIBCPP_TYPE_TRAITS
13 #include "B.h"