(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
modules/
gmf-2_c.C
// { dg-additional-options -fmodules-ts }
module Foo;

// We see no frob from primary's GMF
int frob (int x)
{
  return fn (-x);
}

// We see no macro from primary's GMF
int MACRO (int i)
{
  return frob (i);
}