You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
template <typename T>
concept Multiplicable = requires(T a, T b) { a * b; };
Actual result:
template <typename T>
concept Multiplicable = requires(T a, T b) { a *b; };
Note that a simple-requirement is just an expression. Clang-format should be treating the contents of a requirement-body as an expression context but it is not doing so.