OSDN Git Service

Restrict DR 757 change to C++0x mode.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ns / ns3.C
1 // { dg-do assemble  }
2 namespace foo{
3  void eine_funktion(int)
4  {}
5 }
6
7 using namespace foo;
8
9 namespace foo{
10  void eine_funktion(int,int)
11  {}
12 }
13
14 void andere_funktion()
15 {
16   eine_funktion(3,4);
17 }