1*99d63ccfSPratyush Das // RUN: %clang -g -std=c++2a -target x86_64-windows-msvc -Wno-gnu-string-literal-operator-template %s -S -emit-llvm -o - | FileCheck %s
2*99d63ccfSPratyush Das
3*99d63ccfSPratyush Das template <typename T, T... cs> struct check;
operator ""_x()4*99d63ccfSPratyush Das template <typename T, T... str> int operator""_x() {
5*99d63ccfSPratyush Das return 1;
6*99d63ccfSPratyush Das }
7*99d63ccfSPratyush Das
8*99d63ccfSPratyush Das int b = u8"\"тест_"_x;
9*99d63ccfSPratyush Das // CHECK: _x<char8_t,34,209,130,208,181,209,129,209,130,95,240,144,128,128>
10