Second part of P0482 - char8_t. Reviewed as https://reviews.llvm.org/D55308

llvm-svn: 348828
This commit is contained in:
Marshall Clow
2018-12-11 04:35:44 +00:00
parent 6368818fd5
commit 7dad0bd68b
91 changed files with 1152 additions and 103 deletions

View File

@@ -42,6 +42,12 @@ int main () {
test ( std::wstring(L"") );
test ( std::wstring() );
#if defined(__cpp_lib_char8_t) && __cpp_lib_char8_t >= 201811L
test ( std::u8string{u8"QBCDE"} );
test ( std::u8string{u8""} );
test ( std::u8string{} );
#endif
#if TEST_STD_VER >= 11
test ( std::u16string{u"QBCDE"} );
test ( std::u16string{u""} );