PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / tc1 / dr159.C
blob74d23f1cd1fa0b1d6cfb30f8ae3887879575b3ac
1 // { dg-do compile }
2 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3 // DR159: Namespace qualification in declarators 
5 namespace N {
6   namespace M {
7     void f();
8     void g();
9   }
10   void M::f(){}
11   void N::M::g(){}