aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/ns3.C
blob: a1c8f536d4b31b7da5d5cdd28890b45c96775e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Build don't link: 
namespace foo{
 void eine_funktion(int)
 {}
}

using namespace foo;

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

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