aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/memtemp19.C
blob: 2f9dec9ae63c47d49d18a7e51418bc0b2802d4a8 (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
// { 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();
}


template S::operator int();

int main()
{
  S s;

  int i = s.operator int();
}