Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
using-15_a.C
blob: 3f4bb6c5914c4ada06eea659f8f9f7447320dbbd [
file
] [
log
] [
blame
]
// PR c++/114868
// { dg-additional-options "-fmodules-ts -Wno-global-module" }
// { dg-module-cmi M:a }
module
;
namespace
foo
{
void
a
();
}
export
module
M
:
a
;
namespace
bar
{
// propagate usings from partitions
export
using
foo
::
a
;
}