blob: c4f943d24f9df80ad39a2749d0a92c7509426eb7 [file] [log] [blame]
typedef struct {
int b;
} StructB;
namespace Namespace {
template<typename T> struct AlsoInNamespace { T field; };
extern template struct AlsoInNamespace<int>;
}