llvm/clang/test/Import/struct-in-namespace/Inputs/N1.cpp

namespace N {
  struct S {
    int a;
  };
}

namespace N {
  struct T {
    int b;
  };
}