aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/redecl2.C
blob: 0b65e1ec9571431f4f6d04adcfd37766d8c05f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:

struct A 
{
  template <class A>
  void f(A) {}
};

void g()
{
  A a;
  a.f(3);
}