blob: 8551531b5cdb933bc9528df43c1da2ddc67d5603 (
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
|
// 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();
}
|