1 typedef struct { 2 int anon_field_b; 3 } StructB; 4 5 namespace Namespace { 6 template <typename T> struct AlsoInNamespace { T field; }; 7 extern template struct AlsoInNamespace<int>; 8 } // namespace Namespace 9