aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memclass17.C
blob: 96024e2185928d3df1757ffb0d8fba367d38fb3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Build don't link:

template <class T> struct S 
{
  template <class U> struct I 
  {
  };

  S();
  S(S& s);
  S(I<T>);

  template <class U> operator I<U>();
};

S<int> f();
void g(S<int>);

void h()
{
  g(f());
}