aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/memtemp9.C
blob: 5522d94f91647b59d08b1ed48c4a7f76cf39e2eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do link  }
// GROUPS passed templates membertemplates
extern "C" int printf(const char*, ...);

struct S {
  template <class T>
  operator T();
};

template <class T>
S::operator T()
{
  printf("Hello, world.\n");
  return T();
}

int main()
{
  S s;

  int i = s.operator int();
}