[Bug c++/87971] gcc allows nested namespace definition of inline namespaces
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87971 Nicolas Lesser changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---
[Bug c++/87971] gcc allows nested namespace definition of inline namespaces
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87971 --- Comment #1 from Jonathan Wakely --- It's also accepted without using nested namespace definitions, and that's intentional. namespace one { inline namespace two {} } namespace one { namespace two {} }