blob: 17300ece699371af1ae2b3c20ee7175dfe7d46de [file] [log] [blame]
// { 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 ();
}