Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
using-32_a.C
blob: 2d51b3664faebecc91016ce5f0e0c2746f8f4a08 [
file
] [
log
] [
blame
]
// PR c++/120195
// { dg-additional-options "-fmodules" }
export
module
M
;
extern
"C++"
void
foo
()
{}
export
using
::
foo
;
namespace
ns
{
extern
"C"
void
bar
()
{}
}
extern
"C"
void
bar
();
export
using
ns
::
bar
;