blob: 8551531b5cdb933bc9528df43c1da2ddc67d5603 [file] [log] [blame]
// Build don't run:
// 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();
}