blob: 3f704a913f4ad7cda72a262617035508c0ac59e4 [file] [log] [blame]
// { dg-additional-options "-fmodules-ts -Wno-global-module" }
// { dg-module-cmi M }
module;
namespace bar {
void f(int);
}
export module M;
export import :S;
namespace foo {
export using bar::f;
}