I'm having an issue understanding compiler's complaint:
namespace
{
}
inline namespace
{
}
gcc says
inline namespace must be specified at initial definition
and MSVC says what's in the title.
My disarray comes from my expectation that two subsequent anonymous namespaces should be considered a new declaration of an unrelated new space, yet the compiler complains that somehow they're linked, like if it was trying to extend the first one with the second.