Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2. template <typename L, typename R, typename T>
  3. T operator+(const L& levi, const R& desni) {
  4.  
  5.     return 2 + 3;
  6.  
  7. }
  8.  
  9. int main(){
  10.  
  11.     int a, b;
  12.     a = b = 5;
  13.     std::cout <<
  14.  
  15.     return 0;
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement