(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
modules/
using-6_a.C
// { dg-additional-options -fmodules-ts }

export module bob;
// { dg-module-cmi bob }

namespace A
{
export void swap (int &, int &);
void copy (int &);
}

export template <typename T>
void Foo (T & a, T &b)
{
  using A::swap;
  swap (a, b);

  using A::copy;
  copy (b);
}