Hi, from the page: https://en.cppreference.com/w/cpp/language/string_literal
There are many kinds of C++ raw strings, while I see the lexer/preprocessor should handle them as a single token. While currently they are handled as separate tokens, for example:
int U = 3;
const char32_t* s7 = U"GHIJKL";
In the above cases, the "U" will be parsed as a single Token, and with the same Token id.
Thanks.