blob: d63f9fd8aaa7c05cd9c54d455ac385432fcfd1db [file] [log] [blame]
// { dg-additional-options -fmodules-ts }
export module bob;
// { dg-module-cmi bob }
namespace detail {
int i;
}
namespace elsewhere {
export inline void frob ()
{
using namespace detail;
i = 5;
}
}