blob: ef6f5e5ff4aced8c3031f3cb5e3ac847086e7f46 [file] [log] [blame]
// { dg-additional-options -fmodules-ts }
export module bob;
// { dg-module-cmi bob }
namespace N {
export int foo (int a)
{
return -a;
}
int bar (int a)
{
return -a;
}
}
export using N::foo;
using N::bar;