aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/koenig4.C
blob: 009327c34637e8a29e5cc63e8cf596e034f99dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
void f();
void f(int);

namespace A{
  struct S{
    void f();
    void f(S);
  };
  void f(S&){}
  void h(S&){}
}

template<class T>
void g(T t){
  f(t);
}

int main()
{
  A::S s;
  f(s);
  g(s);
  h(s);
}