Advertisement
konalisp

Untitled

Mar 5th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2. #include <functional>
  3.  
  4. using namespace std;
  5.  
  6. auto trysum = [](){};
  7.  
  8. int main(int argc, char **argv){
  9.     cout << trysum(3);
  10. }
  11.  
  12. auto trysum = [](int a){
  13.     return a*a;
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement