Skip to content

Instantly share code, notes, and snippets.

@ben0x539
Created October 13, 2012 00:42
Show Gist options
  • Save ben0x539/3882621 to your computer and use it in GitHub Desktop.
Save ben0x539/3882621 to your computer and use it in GitHub Desktop.
#include <utility>
template<typename T>
void f() {
struct S {
void g(int a) {
g(0);
}
};
S s;
s.g(std::move(5));
}
int main() {
f<int>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment