preprocessor: Create the parser before handling command-line includes [PR115312]
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / ns1.C
blob3fa883cce4a80440e477780254c52d2c7b0d6192
1 // { dg-do run  }
2 namespace foo{
3   int eine_funktion(int)
4     {
5       return 0;
6     }
8   int eine_funktion(int,int)
9     {
10       return 1;
11     }
14 int main(int,char**)
16   return foo::eine_funktion(1);