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