Is it legal to replace something like this:
namespace foo { namespace bar { baz(); } }
with something like this:
For anyone wondering, the form namespace foo::bar is supported since C++17. References:
namespace foo::bar