Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CXX / lex / lex.literal / lex.ext / p9.cpp
blob65e27b41b066804af7e6bdfb7d4bcfb8ce64feb6
1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
3 using size_t = decltype(sizeof(int));
4 void operator "" _x(const wchar_t *, size_t);
6 namespace std_example {
8 int main() {
9 L"A" "B" "C"_x;
10 "P"_x "Q" "R"_y; // expected-error {{differing user-defined suffixes ('_x' and '_y') in string literal concatenation}}