(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
modules/
lang-3_b.C
// { dg-additional-options -fmodules-ts }
import bob;

void Foo () 
{
  Bar ();
  Baz (); // { dg-error "was not declared" }
  Quux ();
}

void Bar ();
void Baz ();

void Quux ()
{
  Bar ();
  Baz ();
}