aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp67.C
blob: bcf5960638441c92980667207feb5da3dd1d5b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
template <class T>
struct A
{
  template <class T2>
  operator A<T2>() const { return A<T2>(); }
};

main()
{
  A<int> a1;
  A<long> a2;    
  A<double> a3;
  A<char> a4;

  a2 = a1.operator A<long>();
  a3 = (A<double>) a1;                   
  a4 = a1;
}