(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
modules/
mod-impl-1_c.C
// { dg-additional-options "-fmodules-ts" }
module baz;

int Prod (int a, int b)
{
  return a * b;
}

int Square (int a, int b, int c)
{
  return Prod (Square (a, b), c);
}