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

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

namespace N {
export int foo (int a)
{
  return -a;
}
int bar (int a)
{
  return -a;
}
}

export using N::foo;
using N::bar;