(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
modules/
libfn-1_a.C
// { dg-additional-options -fmodules-ts }
// Make sure we're not confused by an imported declaration of a
// library fn
export module foo;
// { dg-module-cmi foo }

export inline void thrower ()
{
  try 
    {
      throw 1;
    }
  catch (...)
    {
    }
}