1 //===-- main.c --------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 
10 int main (int argc, char const *argv[])
11 {
12     auto cs16 = u"hello world ྒྙྐ";
13 	auto cs32 = U"hello world ྒྙྐ";
14     char16_t *s16 = (char16_t *)u"ﺸﺵۻ";
15     char32_t *s32 = (char32_t *)U"ЕЙРГЖО";
16     s32 = nullptr; // Set break point at this line.
17     s32 = (char32_t *)U"෴";
18     s16 = (char16_t *)u"色ハ匂ヘト散リヌルヲ";
19     return 0;
20 }
21