]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / data-formatter / data-formatter-stl / libstdcpp / string / main.cpp
1 #include <string>
2
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 }