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