PR libstdc++/54924 - Warn for std::string constructor with wrong size
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / ns4.C
blobaabfcfcb7ccfefce3828224c32276d4e2918bf31
1 // PR c++/43145
2 // { dg-do link }
4 namespace N {
5   void f();
8 void N::f()
10   extern int i;
11   extern void g();
12   i = 1;
13   g();
16 namespace N {
17   int i;
18   void g() { }
21 int main() { }