Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <functional>
- using namespace std;
- auto trysum = [](){};
- int main(int argc, char **argv){
- cout << trysum(3);
- }
- auto trysum = [](int a){
- return a*a;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement