summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/ns3.C
blob: 6cb289b57c1c17036467459a8182f01e3827d584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do assemble  }
namespace foo{
 void eine_funktion(int)
 {}
}

using namespace foo;

namespace foo{
 void eine_funktion(int,int)
 {}
}

void andere_funktion()
{
  eine_funktion(3,4);
}