Tagged Questions
20
votes
3answers
1k views
SFINAE with invalid function-type or array-type parameters?
Please consider this code:
template<typename T>
char (&f(T[1]))[1];
template<typename T>
char (&f(...))[2];
int main() { char c[sizeof(f<void()>(0)) == 2]; }
I expected ...