The C++ Standard reserves names beginning with an underscore followed by a capital letter in all scopes.
Does this apply to user literal operators?
e.g.
int _MyInt; // reserved, violation
template < char... >
auto operator "" _MyInt ( ); // reserved???