[x] This problem exists even with the setting "C_Cpp.enhancedColorization": "Disabled"
The code with a problem is:
auto f = []<typename t>
requires std::is_same_v<t, int>
{};
auto g = []<class t>
requires std::is_same_v<t, int>
{};
auto h = []<int t>
requires true
{};
Checklist
"C_Cpp.enhancedColorization": "Disabled"
The code with a problem is:
👆Lambda expressions with an explicit template parameter list (always generic) (since C++20)
It looks like:
The theme is Default Dark Modern.
It should look like: