Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
tc1
/
dr159.C
blob: 74d23f1cd1fa0b1d6cfb30f8ae3887879575b3ac [
file
] [
log
] [
blame
]
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR159: Namespace qualification in declarators
namespace
N
{
namespace
M
{
void
f
();
void
g
();
}
void
M
::
f
(){}
void
N
::
M
::
g
(){}
}