Skip to content

Instantly share code, notes, and snippets.

@andrey-malets
Created August 11, 2015 16:03
Show Gist options
  • Save andrey-malets/e59bb935c7c0dcddaf8a to your computer and use it in GitHub Desktop.
Save andrey-malets/e59bb935c7c0dcddaf8a to your computer and use it in GitHub Desktop.
template<typename> struct T {
};
template<typename T> int f();
template<> int f<T<int>>() {
return 1;
}
template<> int f<int>() {
return 2;
}
int main(void) {
return f<int>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment