Skip to content

Instantly share code, notes, and snippets.

@stormbrew
Created July 26, 2013 00:53
Show Gist options
  • Save stormbrew/6085177 to your computer and use it in GitHub Desktop.
Save stormbrew/6085177 to your computer and use it in GitHub Desktop.
#include <vector>
template <typename T>
void blah(T) {}
template <typename T>
std::vector<T> blorp(T) {
std::vector<T> x;
return x;
}
int main() {
blah(blorp(1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment