12 lines · cpp
1int main (int argc, char const *argv[])2{3 auto cs16 = u"hello world ྒྙྐ";4 auto cs32 = U"hello world ྒྙྐ";5 char16_t *s16 = (char16_t *)u"ﺸﺵۻ";6 char32_t *s32 = (char32_t *)U"ЕЙРГЖО";7 s32 = nullptr; // Set break point at this line.8 s32 = (char32_t *)U"෴";9 s16 = (char16_t *)u"色ハ匂ヘト散リヌルヲ";10 return 0;11}12