73519197d8c1a73de358975074b27f5807e0150d
[openbsd] /
1 #include <string>
2
3 int main()
4 {
5     std::wstring wempty(L"");
6     std::wstring s(L"hello world! מזל טוב!");
7     std::wstring S(L"!!!!");
8     const wchar_t *mazeltov = L"מזל טוב";
9     std::string empty("");
10     std::string q("hello world");
11     std::string Q("quite a long std::strin with lots of info inside it");
12     std::basic_string<unsigned char> uchar(5, 'a');
13     S.assign(L"!!!!!"); // Set break point at this line.
14     return 0;
15 }