aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/copy1.C
blob: 24aa5e0357cf9caf7614b919522a1c5f4de74b2a (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
25
26
27
28
29
30
// { dg-do run  }
int i = 0;

template <class T>
class F 
{
public:
  F() {}
  
  template <class T2> F(F<T2>) 
    {
      i = 1;
    }      
};


F<int>
foo()
{
  F<int> f1;
  F<int> f2(f1);
  return f1;
}

int
main()
{
  return i;
}