xref: /llvm-project/clang/test/Modules/Inputs/PR26179/basic_string.h (revision 4d75e8d6761cb950b410d99fc09319bad51b14cb)
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