repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
tc1
/
dr159.C
blob
74d23f1cd1fa0b1d6cfb30f8ae3887879575b3ac
1
// { dg-do compile }
2
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3
// DR159: Namespace qualification in declarators
4
5
namespace N {
6
namespace M {
7
void f();
8
void g();
9
}
10
void M::f(){}
11
void N::M::g(){}
12
}