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

template <class T>
struct S1 {};

struct S2
{
  template <class T>
  operator S1<T>*();
};

struct D: public S1<int> {
};

void f()
{
  S2 s;
  (D*) s; // ERROR - cannot convert
}