I am using Visual Studio 2022, with the latest compiler. I have a problem, when I am trying to create concept definition. I got many syntax error, for example
syntax error: identifier 'has_type_member'
syntax error: missing ';' before '{'
template<typename T>
concept has_type_member = requires { typename T::type; };
I have tried many other basic examples about concepts.
Thanks for your help!
