string_concat.cpp 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
  2. // RUN: %clang_cc1 -std=c11 -x c -fsyntax-only -verify %s
  3. #ifndef __cplusplus
  4. typedef __WCHAR_TYPE__ wchar_t;
  5. typedef __CHAR16_TYPE__ char16_t;
  6. typedef __CHAR32_TYPE__ char32_t;
  7. #endif
  8. void f() {
  9. const char* a = u8"abc" u"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  10. const char* b = u8"abc" U"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  11. const char* c = u8"abc" L"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  12. #ifdef __cplusplus
  13. const char* d = u8"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  14. const char* e = u8"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  15. const char* f = u8"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  16. #endif
  17. const char16_t* g = u"abc" u8"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  18. const char16_t* h = u"abc" U"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  19. const char16_t* i = u"abc" L"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  20. #ifdef __cplusplus
  21. const char16_t* j = u"abc" u8R"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  22. const char16_t* k = u"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  23. const char16_t* l = u"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  24. #endif
  25. const char32_t* m = U"abc" u8"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  26. const char32_t* n = U"abc" u"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  27. const char32_t* o = U"abc" L"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  28. #ifdef __cplusplus
  29. const char32_t* p = U"abc" u8R"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  30. const char32_t* q = U"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  31. const char32_t* r = U"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  32. #endif
  33. const wchar_t* s = L"abc" u8"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  34. const wchar_t* t = L"abc" u"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  35. const wchar_t* u = L"abc" U"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
  36. #ifdef __cplusplus
  37. const wchar_t* v = L"abc" u8R"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  38. const wchar_t* w = L"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  39. const wchar_t* x = L"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  40. #endif
  41. }