blob: ce6e3f920f1e838e759b23bb4f83b002d150c5ef [file] [log] [blame]
// { dg-additional-options "-fmodules-ts -Wno-global-module" }
module;
namespace foo {
void baz();
}
export module foo;
namespace foo {
export using foo::baz;
export using foo::baz;
}