summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/spec29.C
blob: 9f27a8e53a3055b4a76930a2b28144f37cc8ef45 (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
31
char c;

struct S {
  template <typename T>
  operator T*();

  template <typename T>
  operator T();
};

template <>
S::operator int()
{
  return 2;
}

template <>
S::operator char*()
{
  return &c;
}

int main()
{
  S s;
  int i = s;
  char* cp = s;

  if (i != 2 || cp != &c)
    return 1;
}