(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
modules/
nest-1_a.C
// { dg-additional-options "-fmodules-ts" }
export module foo;
// { dg-module-cmi foo }

namespace foo {

  export int frob (int i)
  {
    return i;
  }

}