Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
using-24_a.C
blob: 872f4fc8ab4787d0611118b22baeada830ab05d2 [
file
] [
log
] [
blame
]
// { dg-additional-options "-fmodules-ts -Wno-global-module" }
// { dg-module-cmi M }
module
;
namespace
foo
{
struct
S
{}
S
;
}
export
module
M
;
namespace
bar
{
export
using
foo
::
S
;
export
using
X
=
struct
foo
::
S
;
}