summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/conv1.C
blob: 7909e3f691e185354f0f8a083528b0db00fc6ef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do assemble  }

template <class T>
struct S1 {};

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

struct D: public S1<int> {
};

void f()
{
  S2 s;
  (D*) s; // { dg-error "" } cannot convert
}