(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
modules/
adl-5_a.c
       1  // { dg-additional-options -fmodules-ts }
       2  export module foo;
       3  // { dg-module-cmi foo }
       4  
       5  export template <typename T>
       6  int TPL (T const &t)
       7  {
       8    return frob (t);
       9  }