xref: /aosp_15_r20/external/clang/test/Modules/Inputs/PR26179/basic_string.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 #ifndef _GLIBCXX_STRING
2 #define _GLIBCXX_STRING 1
3 
4 template<typename T>
5 struct basic_string {
6   static T _S_empty_rep_storage[];
7 };
8 
9 template<typename T>
10 T basic_string<T>::_S_empty_rep_storage[sizeof(T)];
11 
12 #endif
13