xref: /aosp_15_r20/external/clang/test/Modules/Inputs/PR27513/mystring.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 #ifndef _GLIBCXX_STRING
2 #define _GLIBCXX_STRING
3 template<typename> struct basic_string {
4   struct _Alloc_hider {} _M_dataplus;
~basic_stringbasic_string5   ~basic_string() { _Alloc_hider h; }
6 };
7 extern template class basic_string<char>;
8 #endif
9