cor3ntin added inline comments.

================
Comment at: clang/test/CXX/dcl.dcl/dcl.link/p2.cpp:11-14
+extern u8"C" {}  // expected-warning {{encoding prefix 'u8' on an unevaluated 
string literal has no effect and is incompatible with c++2c}}
+extern L"C" {}   // expected-warning {{encoding prefix 'L' on an unevaluated 
string literal has no effect and is incompatible with c++2c}}
+extern u"C++" {} // expected-warning {{encoding prefix 'u' on an unevaluated 
string literal has no effect and is incompatible with c++2c}}
+extern U"C" {}   // expected-warning {{encoding prefix 'U' on an unevaluated 
string literal has no effect and is incompatible with c++2c}}
----------------
Note that was ill-formed in clang 16, despite being well-formed in the standard.


================
Comment at: clang/test/SemaCXX/static-assert.cpp:44-45
+static_assert(false, L"\x1ff"    // expected-warning {{encoding prefix 'L' on 
an unevaluated string literal has no effect and is incompatible with c++2c}} \
+                                 // expected-error {{hex escape sequence out 
of range}} \
                                  // expected-error {{invalid escape sequence 
'\x1ff' in an unevaluated string literal}}
                      "0\x123"    // expected-error {{invalid escape sequence 
'\x123' in an unevaluated string literal}}
----------------
hubert.reinterpretcast wrote:
> I doubt that it is a problem, but Clang 16 accepted such hex escapes.
Yes, I only downgraded to a warning what you had reports about.
I haven't seen that pattern in the wild and i don't think anyone who would use 
that isn't confused on some level.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D156596/new/

https://reviews.llvm.org/D156596

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to