2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp9.C
blob5522d94f91647b59d08b1ed48c4a7f76cf39e2eb
1 // { dg-do link  }
2 // GROUPS passed templates membertemplates
3 extern "C" int printf(const char*, ...);
5 struct S {
6   template <class T>
7   operator T();
8 };
10 template <class T>
11 S::operator T()
13   printf("Hello, world.\n");
14   return T();
17 int main()
19   S s;
21   int i = s.operator int();