template <class T, class U> using CommonType = std::common_type_t<T, U>;
template <class T, class U> concept Common =
requires (T t, U u)
{
typename CommonType<T, U>; // CommonType<T, U> is valid and names a type
{ CommonType<T, U>{std::forward<T>(t)} }; // MEANS WHAT?
{ CommonType<T, U>{std::forward<U>(u)} }; // MEANS WHAT?
}
What I don't understand is the two lines marked with // MEANS WHAT?
Those two expressions are T{arg}, described in https://en.cppreference.com/w/cpp/language/explicit_cast which request direct-list-initialization (so in simple words, this says common type exists and both T and U are convertible to it)
Oh, I see, it's an old typo originating from Ranges TS that I fixed for Swappable but forgot for Common. It's requires(T&& t, U&& u), of course, otherwise there's nothing to forward. Fixed.