Created
July 26, 2013 00:53
-
-
Save stormbrew/6085177 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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