1 //===-- main.c --------------------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 11 int main (int argc, char const *argv[]) 12 { 13 auto cs16 = u"hello world "; 14 auto cs32 = U"hello world "; 15 char16_t *s16 = (char16_t *)u""; 16 char32_t *s32 = (char32_t *)U""; 17 s32 = nullptr; // Set break point at this line. 18 s32 = (char32_t *)U""; 19 s16 = (char16_t *)u""; 20 return 0; 21 } 22