| 21 | } |
| 22 | |
| 23 | int main() |
| 24 | { |
| 25 | std::wstring s1 = L"\U0000FFFF"; DecomposeToByte(s1); |
| 26 | std::u8string s2 = u8"\U0001F449"; DecomposeToByte(s2); |
| 27 | std::u16string s3 = u"\U0001F449"; DecomposeToByte(s3); |
| 28 | std::u32string s4 = U"\U0001F449"; DecomposeToByte(s4); |
| 29 | return 0; |
| 30 | } |
nothing calls this directly
no test coverage detected