template <class charT, class traits, class T>
basic_ostream<charT, traits>& operator<<(basic_ostream<charT, traits>&& os, const T& x);
Effects: As if by: os << x;
Remarks: This function shall not participate in overload resolution
unless the expression os << x is well-formed.